mirror of https://github.com/apache/maven.git
Added rar integration test.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@291397 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
73473d0fbf
commit
2ee39543f8
|
@ -188,6 +188,8 @@ it0066: Test that nonstandard POM files will be installed correctly.
|
||||||
|
|
||||||
it0067: Test activation of a profile from the command line.
|
it0067: Test activation of a profile from the command line.
|
||||||
|
|
||||||
|
it0070: Test a RAR generation.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
- generated sources
|
- generated sources
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
it0070
|
||||||
it0067
|
it0067
|
||||||
it0066
|
it0066
|
||||||
it0065
|
it0065
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
target/maven-core-it0070-1.0.rar
|
||||||
|
target/maven-core-it0070-1.0.rar!/META-INF/ra.xml
|
||||||
|
target/maven-core-it0070-1.0.rar!/SomeResource.txt
|
|
@ -0,0 +1 @@
|
||||||
|
package
|
|
@ -0,0 +1,20 @@
|
||||||
|
<model>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.apache.maven</groupId>
|
||||||
|
<artifactId>maven-core-it0070</artifactId>
|
||||||
|
<packaging>rar</packaging>
|
||||||
|
<version>1.0</version>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-rar-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<includeJar>false</includeJar>
|
||||||
|
<raXmlFile>src/main/custom/ra.xml</raXmlFile>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</model>
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<connector>
|
||||||
|
<fake-content></fake-content>
|
||||||
|
</connector>
|
Loading…
Reference in New Issue