You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/09/17 20:44:42 UTC

svn commit: r998247 - in /tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb: ./ pom.xml

Author: nash
Date: Fri Sep 17 18:44:41 2010
New Revision: 998247

URL: http://svn.apache.org/viewvc?rev=998247&view=rev
Log:
Generate a build.xml file from the maven build

Modified:
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/   (props changed)
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/pom.xml

Propchange: tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Fri Sep 17 18:44:41 2010
@@ -1,4 +1,19 @@
-.classpath
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+derby.log
+maven.log
+maven-eclipse.xml
+build.xml
+velocity.log*
+junit*.properties
+surefire*.properties
 .project
+.classpath
 .settings
-target
+.deployables
+.wtpmodules
+.externalToolBuilders

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/pom.xml?rev=998247&r1=998246&r2=998247&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/tutorials/store/catalog-ejb/pom.xml Fri Sep 17 18:44:41 2010
@@ -101,6 +101,23 @@
                 <filtering>true</filtering>
             </resource>
         </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.tuscany.sca</groupId>
+                <artifactId>tuscany-maven-ant-generator</artifactId>
+                <version>1.6.1-SNAPSHOT</version>
+                <executions>
+                    <execution>
+                        <configuration>
+                            <pathToRootDir>../../..</pathToRootDir>
+                        </configuration>
+                        <goals>
+                            <goal>generate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
     </build>
 
 </project>