You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jd...@apache.org on 2005/07/18 23:44:27 UTC

svn commit: r219571 - in /maven/components/trunk/maven-core-it: ./ it0033/ it0033/src/ it0033/src/application/ it0033/src/application/META-INF/

Author: jdcasey
Date: Mon Jul 18 14:43:11 2005
New Revision: 219571

URL: http://svn.apache.org/viewcvs?rev=219571&view=rev
Log:
Resolving: MNG-576...I'm committing Stephane's patch for an integration test. Thanks, Stephane

Added:
    maven/components/trunk/maven-core-it/it0033/
    maven/components/trunk/maven-core-it/it0033/expected-results.txt   (with props)
    maven/components/trunk/maven-core-it/it0033/goals.txt   (with props)
    maven/components/trunk/maven-core-it/it0033/pom.xml   (with props)
    maven/components/trunk/maven-core-it/it0033/src/
    maven/components/trunk/maven-core-it/it0033/src/application/
    maven/components/trunk/maven-core-it/it0033/src/application/META-INF/
    maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml   (with props)
Modified:
    maven/components/trunk/maven-core-it/README.txt
    maven/components/trunk/maven-core-it/integration-tests.txt

Modified: maven/components/trunk/maven-core-it/README.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/README.txt?rev=219571&r1=219570&r2=219571&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/README.txt (original)
+++ maven/components/trunk/maven-core-it/README.txt Mon Jul 18 14:43:11 2005
@@ -99,6 +99,8 @@
 
 it0032: Tests that a specified Maven version requirement that is lower doesn't cause any problems
 
+it0033: Test an EAR generation
+
 -------------------------------------------------------------------------------
 
 - generated sources

Modified: maven/components/trunk/maven-core-it/integration-tests.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/integration-tests.txt?rev=219571&r1=219570&r2=219571&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it/integration-tests.txt (original)
+++ maven/components/trunk/maven-core-it/integration-tests.txt Mon Jul 18 14:43:11 2005
@@ -1,3 +1,4 @@
+it0033
 it0032
 it0031
 #it0030

Added: maven/components/trunk/maven-core-it/it0033/expected-results.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0033/expected-results.txt?rev=219571&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0033/expected-results.txt (added)
+++ maven/components/trunk/maven-core-it/it0033/expected-results.txt Mon Jul 18 14:43:11 2005
@@ -0,0 +1,3 @@
+target/maven-core-it00xx-1.0.ear
+target/maven-core-it00xx-1.0.ear!/META-INF/application.xml
+target/maven-core-it00xx-1.0.ear!/META-INF/appserver-application.xml

Propchange: maven/components/trunk/maven-core-it/it0033/expected-results.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0033/expected-results.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0033/goals.txt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0033/goals.txt?rev=219571&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0033/goals.txt (added)
+++ maven/components/trunk/maven-core-it/it0033/goals.txt Mon Jul 18 14:43:11 2005
@@ -0,0 +1 @@
+package

Propchange: maven/components/trunk/maven-core-it/it0033/goals.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0033/goals.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0033/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0033/pom.xml?rev=219571&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0033/pom.xml (added)
+++ maven/components/trunk/maven-core-it/it0033/pom.xml Mon Jul 18 14:43:11 2005
@@ -0,0 +1,19 @@
+<model>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven</groupId>
+  <artifactId>maven-core-it00xx</artifactId>
+  <packaging>ear</packaging>
+  <version>1.0</version>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-ear-plugin</artifactId>
+        <configuration>
+            <generateApplicationXml>true</generateApplicationXml>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</model>

Propchange: maven/components/trunk/maven-core-it/it0033/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0033/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml?rev=219571&view=auto
==============================================================================
--- maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml (added)
+++ maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml Mon Jul 18 14:43:11 2005
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<appserver-app>
+  <whatever/>
+</appserver-app>

Propchange: maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/components/trunk/maven-core-it/it0033/src/application/META-INF/appserver-application.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org