我有两个项目my-lib
和my-webapp
。第一个项目是my-webapp
的依赖项。因此,当要求Maven2构建我的WAR时,my-lib
JAR将添加到Web应用程序的WEB-INF/lib/
目录中。
但是,我希望my-lib
JAR直接在WEB-INF/classes
目录中解压缩,就像项目my-lib
中包含my-webapp
来源一样。
换句话说,而不是具有以下WAR内容:
my-webapp/
...
WEB-INF/
lib/
my-lib-1.0.jar
... (others third libraries)
我想拥有:
my-webapp/
...
WEB-INF/
classes/
my-lib files
lib/
... (others third libraries)
有没有办法配置my-webapp
或Maven2 war插件来实现这个目标?
答案 0 :(得分:6)
正如blaufish的回答所说,你可以使用maven-dependency-plugin的unpack mojo解压缩工件。但是,为了避免jar出现在WEB-INF / lib中,您需要不将其指定为依赖,而是将插件配置为unpack specific artifacts。
以下配置会在process-resources阶段将some.group.id:my-lib:1.0:jar的内容解压缩到目标/类中,即使工件未定义为依赖项。这样做时要小心,因为有可能破坏你的实际内容,这可能导致很多调试。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-my-lib</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>some.group.id</groupId>
<artifactId>my-lib</artifactId>
<version>1.0</version>
<type>jar</type>
<overWrite>false</overWrite>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<overWriteReleases>false</overWriteReleases>
</configuration>
</execution>
</executions>
</plugin>
答案 1 :(得分:2)
您可以将maven-dependency-plugin配置为执行此操作,解压缩而不是按照here所述复制jar。
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>unpack</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
<destFileName>optional-new-name.jar</destFileName>
<includes>**/*.class,**/*.xml</includes>
<excludes>**/*test.class</excludes>
</artifactItem>
</artifactItems>
<includes>**/*.java</includes>
<excludes>**/*.properties</excludes>
<outputDirectory>${project.build.directory}/wars</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...]
</project>
答案 2 :(得分:1)
unpack mojo似乎接近你的目标。不知道如何完成你提出的整个流程。
(顺便说一句,我很怀疑这是一个好主意。实用程序类应该进入jar,并且罐子放在WAR中或者放在EAR中。解包实用程序jar似乎是错误的)
答案 3 :(得分:1)
[哎呀,刚才意识到你在使用Maven。我不删除这个答案,因为它可能会拯救一些Ant用户。所以没有必要让我失望...]
我必须提到多少次Jar
,War
和Ear
Ant任务是Zip个任务的子任务? :-)如果我没记错的话,这样的话可以解决问题:
<war dist="my-webapp.war">
<zipgroupfileset dir="libs" includes="*.jar" prefix="WEB-INF/classes"/>
</war>
还值得试用src="mylib.jar"
,但我没有测试过这个选项。
答案 4 :(得分:1)
我能够如上所述使用unpack mojo,而且我将依赖项本身标记为"provided" (scope),以避免重复WEB-INF / lib下的jar内容。