summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/store/store-db/pom.xml
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-26 10:22:05 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-26 10:22:05 +0000
commitcdaf67298f38a4748cd50b432d3889c35855ba14 (patch)
treec763bad4f608e2620321d19293d0e95e9c9561be /sca-java-1.x/trunk/tutorials/store/store-db/pom.xml
parentba4c3cc2a2bbfb73edbcc2601a1e2a34c9fa629d (diff)
Merge r1002074 Use hand-built build.xml file containing code to create the sample database
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1027445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/trunk/tutorials/store/store-db/pom.xml27
1 files changed, 3 insertions, 24 deletions
diff --git a/sca-java-1.x/trunk/tutorials/store/store-db/pom.xml b/sca-java-1.x/trunk/tutorials/store/store-db/pom.xml
index 668cfebcbd..69e988ede0 100644
--- a/sca-java-1.x/trunk/tutorials/store/store-db/pom.xml
+++ b/sca-java-1.x/trunk/tutorials/store/store-db/pom.xml
@@ -35,14 +35,6 @@
</repository>
</repositories>
- <dependencies>
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-sca-api</artifactId>
- <version>1.7-SNAPSHOT</version>
- </dependency>
- </dependencies>
-
<build>
<finalName>${artifactId}</finalName>
<sourceDirectory>${basedir}</sourceDirectory>
@@ -53,28 +45,13 @@
<exclude>**/*.java</exclude>
<exclude>**/.*/**</exclude>
<exclude>pom.xml</exclude>
- <exclude>build.xml</exclude>
+ <exclude>build*.xml</exclude>
<exclude>target/**</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-maven-ant-generator</artifactId>
- <version>1.7-SNAPSHOT</version>
- <executions>
- <execution>
- <configuration>
- <pathToRootDir>../../..</pathToRootDir>
- </configuration>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<version>1.3</version>
@@ -108,6 +85,7 @@
</execution>
<!-- Shutdown DB in order to be able to run unit tests -->
+ <!-- commented out because the unit tests don't use this database
<execution>
<id>shutdown-database-sothat-test-can-run</id>
<phase>process-test-resources</phase>
@@ -120,6 +98,7 @@
<skipOnConnectionError>true</skipOnConnectionError>
</configuration>
</execution>
+ -->
</executions>
</plugin>
</plugins>