Because of this definition in the pom.xml:
com.sendgrid
java-http-client
[4.2,5.0)
Every time, when I build my project (mvn package) - I get this extra request:
Downloading from sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/sendgrid/java-http-client/maven-metadata.xml
IMHO this is clutter, and I don't think it is a good practice not to fix the version of your dependencies. How do you know that your jar will work with a future java-http-client dependency?
(And while you are updating this dependency, you might update to a http client that is compatible to GraalVM native mode :)
Because of this definition in the pom.xml:
com.sendgrid
java-http-client
[4.2,5.0)
Every time, when I build my project (mvn package) - I get this extra request:
Downloading from sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots/com/sendgrid/java-http-client/maven-metadata.xml
IMHO this is clutter, and I don't think it is a good practice not to fix the version of your dependencies. How do you know that your jar will work with a future java-http-client dependency?
(And while you are updating this dependency, you might update to a http client that is compatible to GraalVM native mode :)