diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-10-28 20:57:48 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-10-28 20:57:48 +0000 |
commit | 92b14e5f5c8bf62558985c396b213f78da1f4127 (patch) | |
tree | dac3f2ceeab5934055b4d6de64a077f9ea5167c7 | |
parent | 6841eb8db287084c629370665628f07cf18dcd5e (diff) |
Set outputDirectory for pom.xml
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@830759 13f79535-47bb-0310-9956-ffa450edef68
5 files changed, 5 insertions, 21 deletions
diff --git a/sandbox/sca-cloud-tutorial/cloud-google/pom.xml b/sandbox/sca-cloud-tutorial/cloud-google/pom.xml index c832a52ebc..d5848d13cf 100644 --- a/sandbox/sca-cloud-tutorial/cloud-google/pom.xml +++ b/sandbox/sca-cloud-tutorial/cloud-google/pom.xml @@ -75,27 +75,6 @@ <build> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <configuration> - <projectnatures> - <projectnature>org.eclipse.jdt.core.javanature</projectnature> - <projectnature>com.google.appengine.eclipse.core.gaeNature</projectnature> - <projectnature>com.google.gdt.eclipse.core.webAppNature</projectnature> - </projectnatures> - <buildcommands> - <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand> - <buildcommand>com.google.appengine.eclipse.core.enhancerbuilder</buildcommand> - <buildcommand>com.google.appengine.eclipse.core.projectValidator</buildcommand> - <buildcommand>com.google.gdt.eclipse.core.webAppProjectValidator</buildcommand> - </buildcommands> - <classpathContainers> - <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> - <classpathContainer>com.google.appengine.eclipse.core.GAE_CONTAINER</classpathContainer> - </classpathContainers> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/pom.xml b/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/pom.xml index 7ce648d012..e93b0e3737 100644 --- a/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/pom.xml +++ b/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/pom.xml @@ -67,6 +67,7 @@ <build> <finalName>${artifactId}</finalName> + <outputDirectory>war/WEB-INF/classes</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/sandbox/sca-cloud-tutorial/pom.xml b/sandbox/sca-cloud-tutorial/pom.xml index ab351ab42b..930f293d77 100644 --- a/sandbox/sca-cloud-tutorial/pom.xml +++ b/sandbox/sca-cloud-tutorial/pom.xml @@ -43,6 +43,7 @@ <module>store-appengine-webapp</module> <module>store-catalog-appengine-webapp</module> <module>store-catalog-ibmcloud-webapp</module> + <module>expertise-rest-appengine-webapp</module> </modules> </profile> diff --git a/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml b/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml index c5c39416b8..c83e9cf7ac 100644 --- a/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml +++ b/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml @@ -96,6 +96,7 @@ <build> <finalName>${artifactId}</finalName> + <outputDirectory>war/WEB-INF/classes</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/sandbox/sca-cloud-tutorial/store-catalog-appengine-webapp/pom.xml b/sandbox/sca-cloud-tutorial/store-catalog-appengine-webapp/pom.xml index 9242447a95..2e5f3f7280 100644 --- a/sandbox/sca-cloud-tutorial/store-catalog-appengine-webapp/pom.xml +++ b/sandbox/sca-cloud-tutorial/store-catalog-appengine-webapp/pom.xml @@ -83,6 +83,8 @@ <build> <finalName>${artifactId}</finalName> + <outputDirectory>war/WEB-INF/classes</outputDirectory> + <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> |