我正在尝试构建一个(war)项目,我从另一段代码中复制并修改了pom.xml文件,出于某种原因,当我mvn clean package
该软件时,它不包含这些类进入相关的* -classes.jar文件。 Maven版本在Ubuntu 12.10上是2.2.1。
我是maven的高手,主要是通过复制和粘贴来管理示例,所以我基本上不知道我的pom是如何工作的(它完全包含在下面)。
项目有一个<packaging>war</packaging>
元素,maven-war-plugin
配置部分对archiveClasses
和attachClasses
说,我认为这是导致* -classes.jar文件的原因要建成。运行构建后,我的目标目录如下所示:
richard@holly:~/Code/External/JavaServer2.0/target$ ls
apidocs generated-sources surefire sword2-server-1.0-classes.jar sword2-server-1.0-sources.jar
classes maven-archiver sword2-server-1.0 sword2-server-1.0-javadoc.jar sword2-server-1.0.war
但是sword2-server-1.0-classes.jar不包含任何类:
richard@holly:~/Code/External/JavaServer2.0/target$ jar tf sword2-server-1.0-classes.jar
META-INF/
META-INF/MANIFEST.MF
META-INF/maven/
META-INF/maven/org.swordapp/
META-INF/maven/org.swordapp/sword2-server/
META-INF/maven/org.swordapp/sword2-server/pom.xml
META-INF/maven/org.swordapp/sword2-server/pom.properties
与此同时,此目录中的所有其他* .jar文件都包含源文件的所有相关信息(javadocs,source等等都已完成)。
我毫无疑问错过了某种形式的插件配置,但到目前为止还无法理解maven插件文档,所以任何帮助都非常受欢迎。
(几乎)完整的pom.xml(为了简洁省略了实际的依赖关系):
<?xml version="1.0" encoding="UTF-8"?>
<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>org.swordapp</groupId>
<artifactId>sword2-server</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<name>SWORD v2 :: Common Server Library</name>
<description>
Common Server Library with interfaces to be implemented by servers
wishing to provide SWORD v2 support
</description>
<url>http://www.swordapp.org/</url>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>6</source>
<target>6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>
true
</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>
true
</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
<attachClasses>true</attachClasses>
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
<warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
<webResources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/src/main/webapp</directory>
<includes>
<include>WEB-INF/web.xml</include>
</includes>
</resource>
</webResources>
</configuration>
<executions>
<execution>
<phase>prepare-package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
....
</dependencies>
</project>
答案 0 :(得分:6)
事实证明,archiveClasses
和attachClasses
并不能很好地发挥作用。 attachClasses
的文档说它会在战争构建期间将文件放在webapps classes
目录中的* -classes.jar中。但是archiveClasses
将webapp中classes
目录的内容放入webapp的lib
目录中的jar文件中。因为这意味着如果这两个配置标志都设置为true,那么classes
目录中没有要放入* -classes.jar的类。
答案是从配置中删除archiveClasses
,然后一切都按预期运行。
这看起来好像是一个maven bug,它在maven 2和maven 3中的行为相同。
答案 1 :(得分:3)
您应该尝试通过降低复杂性来解决问题,只需首先尝试一个简单的配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
之后只需尝试:
mvn clean package