diff options
4 files changed, 29 insertions, 7 deletions
diff --git a/sandbox/sca-cloud-tutorial/cloud-google/pom.xml b/sandbox/sca-cloud-tutorial/cloud-google/pom.xml index 98144b8197..2face6997c 100644 --- a/sandbox/sca-cloud-tutorial/cloud-google/pom.xml +++ b/sandbox/sca-cloud-tutorial/cloud-google/pom.xml @@ -96,6 +96,7 @@ </classpathContainers> </configuration> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> @@ -138,7 +139,6 @@ </execution> </executions> </plugin> - </plugins> </build> diff --git a/sandbox/sca-cloud-tutorial/pom.xml b/sandbox/sca-cloud-tutorial/pom.xml index 066b3a536b..ab351ab42b 100644 --- a/sandbox/sca-cloud-tutorial/pom.xml +++ b/sandbox/sca-cloud-tutorial/pom.xml @@ -30,10 +30,29 @@ <packaging>pom</packaging> <name>Apache Tuscany SCA Cloud Tutorial</name> - <modules> - <module>cloud-api</module> - <module>cloud-google</module> - <module>store-assets</module> - </modules> - + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>cloud-api</module> + <module>cloud-google</module> + <module>store-assets</module> + <module>store-appengine-webapp</module> + <module>store-catalog-appengine-webapp</module> + <module>store-catalog-ibmcloud-webapp</module> + </modules> + </profile> + + <profile> + <id>eclipse</id> + <modules> + <module>cloud-api</module> + <module>store-assets</module> + <module>store-catalog-ibmcloud-webapp</module> + </modules> + </profile> + </profiles> </project>
\ No newline at end of file diff --git a/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml b/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml index 297fd11bd4..4473c36617 100644 --- a/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml +++ b/sandbox/sca-cloud-tutorial/store-appengine-webapp/pom.xml @@ -118,6 +118,7 @@ </classpathContainers> </configuration> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> @@ -176,6 +177,7 @@ </execution> </executions> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> 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 647a53746a..232a83f48e 100644 --- a/sandbox/sca-cloud-tutorial/store-catalog-appengine-webapp/pom.xml +++ b/sandbox/sca-cloud-tutorial/store-catalog-appengine-webapp/pom.xml @@ -105,6 +105,7 @@ </classpathContainers> </configuration> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> |