summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-09-16 10:05:32 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-09-16 10:05:32 +0000
commit3ad84c4a1399d302b6ced85c7df76b3f52f1d189 (patch)
tree0b1737fa3ef93ec7547c901a880e29e464020165
parent4932a0a60af4070f36149429306674b91632f485 (diff)
TUSCANY-3677 configure poms to match distributed osgi samples reorg
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@997674 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/samples/pom.xml4
-rw-r--r--sca-java-2.x/trunk/samples/sca-features/distributed-osgi/dynamic/pom.xml44
-rw-r--r--sca-java-2.x/trunk/samples/sca-features/distributed-osgi/implementation.osgi/pom.xml44
-rw-r--r--sca-java-2.x/trunk/samples/sca-features/distributed-osgi/pom.xml44
-rw-r--r--sca-java-2.x/trunk/samples/sca-features/pom.xml1
5 files changed, 133 insertions, 4 deletions
diff --git a/sca-java-2.x/trunk/samples/pom.xml b/sca-java-2.x/trunk/samples/pom.xml
index f0fa7753e0..9e336d8b5b 100644
--- a/sca-java-2.x/trunk/samples/pom.xml
+++ b/sca-java-2.x/trunk/samples/pom.xml
@@ -37,10 +37,6 @@
<module>calculator-osgi</module>
<module>calculator-rest-osgi</module>
- <module>dosgi-calculator</module>
- <module>dosgi-calculator-operations</module>
- <module>dosgi-dynamic-calculator</module>
- <module>dosgi-dynamic-calculator-operations</module>
<module>calculator-scaclient</module>
<!-- *********
diff --git a/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/dynamic/pom.xml b/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/dynamic/pom.xml
new file mode 100644
index 0000000000..8938855588
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/dynamic/pom.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-samples</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>tuscany-samples-distributed-osgi-dynamic</artifactId>
+ <packaging>pom</packaging>
+ <name>Apache Tuscany Samples Distributed OSGI Dynamically Configured</name>
+
+ <profiles>
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>dosgi-dynamic-calculator</module>
+ <module>dosgi-dynamic-calculator-operations</module>
+ </modules>
+ </profile>
+ </profiles>
+</project>
diff --git a/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/implementation.osgi/pom.xml b/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/implementation.osgi/pom.xml
new file mode 100644
index 0000000000..043411324a
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/implementation.osgi/pom.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-samples</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>tuscany-samples-distributed-osgi-static</artifactId>
+ <packaging>pom</packaging>
+ <name>Apache Tuscany Samples Distributed OSGI Statically Configured</name>
+
+ <profiles>
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>dosgi-calculator</module>
+ <module>dosgi-calculator-operations</module>
+ </modules>
+ </profile>
+ </profiles>
+</project>
diff --git a/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/pom.xml b/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/pom.xml
new file mode 100644
index 0000000000..de3a1015c9
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/sca-features/distributed-osgi/pom.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-samples</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>tuscany-samples-distributed-osgi</artifactId>
+ <packaging>pom</packaging>
+ <name>Apache Tuscany Samples Distributed OSGI</name>
+
+ <profiles>
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>implementation.osgi</module>
+ <module>dynamic</module>
+ </modules>
+ </profile>
+ </profiles>
+</project>
diff --git a/sca-java-2.x/trunk/samples/sca-features/pom.xml b/sca-java-2.x/trunk/samples/sca-features/pom.xml
index d8e449a65b..cb72f24343 100644
--- a/sca-java-2.x/trunk/samples/sca-features/pom.xml
+++ b/sca-java-2.x/trunk/samples/sca-features/pom.xml
@@ -39,6 +39,7 @@
<module>binding-rmi</module>
<module>binding-sca</module>
<module>binding-ws</module>
+ <module>distributed-osgi</module>
</modules>
</profile>
</profiles>