How do I download JAR during a build in Maven script?
|
feedback
|
|
Normally you don't use Maven for "just downloading", but for your build process. So normally, you do the following steps:
As a side effect, you will have downloaded the library to your local Maven repository. There are a lot of plugins to do something with dependencies, so have e.g. a look at the Maven Dependency plugin. | |||
|
feedback
|
|
Maven does not work like that. Here's the closest you'll get to my knowledge:
Note that all parameters except transitive are required. Reference: | |||
|
feedback
|
|
If you just want to download a JAR once from a maven mirror I suggest you could just do this manually: For Maven 1: For Maven 2: These are the repositories (a mirror anyway) that maven will get its JARs from - you can easily access them in the webbrowser of your choice and download the JARs etc. Just browse through the hierarchy (it looks like any Java packag hierarchy) until you find the artefact, then pick the right version and your good. For example version 3.6.6.Final of hibernate-core from group org.hibernate you'd find here:
| |||
feedback
|