我知道我們在maven pom.xml中使用<exclusion>
<excludes>
<exclude>
標籤。我不得不在下面的maven pom文件中添加一個jarmodule
。什麼是maven pom.xml文件中的<excluded>標籤?
<jarModule>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<excluded>true</excluded>
</jarModule>
什麼是<excluded>
標記的意思? 這被添加到下面的插件。
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.5</version>
.........................
那麼所有這些標籤是一樣的嗎? ''tags? –
prime