我知道这听起来很笨拙,对此我深表歉意。
我的问题很简单:
我在本地开发了一个项目,它包含pom.xml文件中引用的许多外部依赖项。
当我使用mvn deploy在远程服务器上进行部署时,只会部署应用程序jar,而不会部署其依赖项。
所以当我尝试在远程服务器上执行程序时,我遇到了java.lang.NoClassDefFoundError。
我需要做些什么才能使这项工作正常进行?
编辑:我宁愿避免最终得到一个庞大的相扑罐,其中包含所有依赖项。我宁愿将依赖项分别导出到远程服务器(如果这样)
编辑2:是否可以“远程化”远程服务器并直接从那里执行Maven依赖关系查找?并且仅在更新代码时部署我的“真实” jar吗?
我将使用 dependency:copy-dependencies mojo来查看 maven-dependency-plugin 。看起来很有趣。
在我的pom.xml下面:jar-with-dependencies不起作用(我必须错过了一些东西)
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com</groupId>
<artifactId>zylon</artifactId>
<version>HBaseConnect</version>
<name>BaseConnect</name>
<dependencies>
(...)
</dependencies>
<distributionManagement>
<repository>
<id>ssh-repository</id>
<url>scpexe://remote.server/cloud/repo</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>zylon.myMainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
</build>
</project>
下面的阴影插件可以正常工作,但是会产生大量的Jar文件。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>classworlds:classworlds</exclude>
<exclude>junit:junit</exclude>
<exclude>jmock:*</exclude>
<exclude>*:xml-apis</exclude>
<exclude>org.apache.maven:lib:tests</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
答案 0 :(得分:2)
您可以使用maven-assembly-plugin
并将其配置为使用jar-with-dependencies
描述符来实现。
您可以找到此here
的示例和更多详细信息编辑:请确保为插件定义一个执行目标并正确调用该目标;可以通过:
mvn groupId:artifactId:version:goal
(您可以检查如何缩短参考文献here)OR
package
)。在您的特定情况下: <project>
[...]
<build>
[...]
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
[...]
</project>
正如我所附加的原始链接(https://maven.apache.org/plugins/maven-assembly-plugin/usage.html)所示