之內,並將其依賴關係作爲一個單獨的jar下載到內部的依賴關係中?將maven依賴關係作爲一個單獨的.jar下載到
我的使用情況:
下載(org.apache.felix.http.servlet-API:1.1.0),然後將其複製到一個文件夾。
從MVN倉庫(http://mvnrepository.com/artifact/org.apache.felix/org.apache.felix.http.servlet-api)可以得到它作爲一個單一的罐子。
在本地構建我使用Maven的依賴關係的插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>/Users/user/dev/fun/felix-framework-5.0.0/bundle</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
現在,它複製org.apache.felix.http.servlet-API而不是作爲一個單獨的jar,但作爲2罐子的。第一個jar是(org.apache.felix.http.servlet-api),第二個jar是tomcat-servlet-api。在依賴關係的依賴列表中提到了這一點。
我怎樣才能下載並複製到一個文件夾org.apache.felix.http.servlet-api作爲一個單一的jar(與從mvn倉庫下載相同的格式)?
謝謝, 彼得