我想创建一个可执行jar(包含我的代码的所有* .class)。 但是,我不希望Jar包含编译期间在我的src / main / resources路径中的资源。
我的项目层次结构是:
project
-src
-main
-resources
-resources_setting.xml
-target
-classes
-resources_setting.xml
我希望我的jar只包含main和依赖项的类,而不是target \ classes或内部资源中的资源。
我该怎么做?
我正在使用maven-assembly-plugin,如下所示:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>cqm.qa.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
答案 0 :(得分:3)
出于捆绑目的,我通常使用maven-shade-plugin
,设置如下所述。它将与程序集插件一样工作。
<profile>
<id>generate-shaded-jar</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>cqm.qa.Main</Main-Class>
<Class-Path>.</Class-Path>
</manifestEntries>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>log4j.properties</exclude>
<exclude>details.properties</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
<configuration>
<finalName>cqm-full</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
在上面的配置中,我从最终jar中排除了log4j.properties
和details.properties
,其中依赖项名为cqm-full.jar
<强>更新强>
使用mvn install -Pgenerate-shaded-jar
现在src/main/resources
中的资源文件不会添加到cqm-full.jar
中。如果在没有配置文件mvn clean install
的情况下调用,您仍然可以查看jar中的资源