diff options
Diffstat (limited to 'sca-java-2.x')
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> |