mirror of https://github.com/apache/maven.git
Reserve an it number for war plugin
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163450 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4d67c57d74
commit
c4cab3edfa
|
@ -48,6 +48,8 @@ it0014: Test a JAR override by file.
|
||||||
it0015: Test marmalade-driven mojo support. This will compile supporting java
|
it0015: Test marmalade-driven mojo support. This will compile supporting java
|
||||||
classes (mmld tag & taglib), generate plugin descriptor from mmld script,
|
classes (mmld tag & taglib), generate plugin descriptor from mmld script,
|
||||||
install the plugin, and finally use the new plugin.
|
install the plugin, and finally use the new plugin.
|
||||||
|
|
||||||
|
it0016: Test a WAR generation
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
- generated sources
|
- generated sources
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
*~
|
||||||
|
*.log
|
||||||
|
target
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
dist
|
||||||
|
target
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
log.txt
|
|
@ -0,0 +1,4 @@
|
||||||
|
target/classes/org/apache/maven/it0016/Person.class
|
||||||
|
target/test-classes/org/apache/maven/it0016/PersonTest.class
|
||||||
|
target/maven-core-it0016-1.0.war
|
||||||
|
target/maven-core-it0016-1.0.war!/it0016.properties
|
|
@ -0,0 +1 @@
|
||||||
|
package
|
|
@ -0,0 +1,7 @@
|
||||||
|
<project>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>maven</groupId>
|
||||||
|
<artifactId>maven-core-it0016</artifactId>
|
||||||
|
<type>war</type>
|
||||||
|
<version>1.0</version>
|
||||||
|
</project>
|
Loading…
Reference in New Issue