我创建了一个Confluence插件(一个Java应用程序),它上面有Maven,并在pom.xml中包含一些依赖项,如下所示:(需要使用Google Client Library)
<dependencies>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-calendar</artifactId>
<version>v3-rev254-1.22.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>1.22.0</version>
<scope>compile</scope>
</dependency>
..... Skip .....
</dependencies>
我还下载了Google客户端库并创建了一个&#34; libs&#34;文件夹位于&#34; src / main / resources /&#34;在这个maven项目中存储它们的路径,并将它们作为jar添加到Eclipse中,如下所示:
然而,在执行&#34; atlas-debug&#34;调用Confluence实例或&#34; atlas-package&#34;命令,最后的导出的jar 文件通常不包含依赖项/库(我根据失败的jar文件大小找到它,它比成功的文件小得多)。
每次执行时,如何使库文件真正包含在导出的jar 文件中#34; atlas-debug&#34;或&#34; atlas-package&#34;命令?
答案 0 :(得分:1)
您可以使用 maven-assembly-plugin 插件将所有依赖项打包到jar中。您可以在pom.xml
:
<build>
...
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
<executions>
<execution>
<id>assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
</archive>
</configuration>
</execution>
</executions>
</plugin>
...
</plugins>
...
</build>
请记住,使用<scope>provided</scope>
配置的依赖项不会包含在jar中。