使用原型的新Maven项目:为什么javaee-endorsed-api.jar被复制到POM中?
我使用Maven原型()来创建一个新的Java EE 6项目,但不明白为什么某些东西被放在POM的元素中。具体来说,我不明白为什么会将 复制到认可的目录。根据这个问题的答案,这是编译所必需的,但是当我删除下的相关元素时,我的项目编译得很好。webapp-javaee6
build
javaee-endorsed-api.jar
plugin
build
由于 在 POM 中已经作为依赖项提供,这不能用于编译吗?javax:javaee-web-api
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>6.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>