我正和maven一起使用eclipse。我需要在使用maven构建项目时在jar中组合几个类文件。
所以我将以下内容添加到pom.xml中:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<index>false</index>
<classesDirectory>${project.build.classes.de.filter}</classesDirectory>
<finalName>BasicFilters</finalName>
<outputDirectory>${project.build.Plugins}</outputDirectory>
</archive>
</configuration>
<executions>
<execution>
<id>Building Jar from Filters</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
该建筑说:构建成功,但它没有构建任何jar,并且控制台中没有显示插件中的信息。