You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2013/01/10 15:06:59 UTC

svn commit: r1210 [2/2] - /release/felix/

Added: release/felix/org.apache.felix.ipojo.composite-1.8.6.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.composite-1.8.6.pom (added)
+++ release/felix/org.apache.felix.ipojo.composite-1.8.6.pom Thu Jan 10 14:06:31 2013
@@ -0,0 +1,178 @@
+<!--
+  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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix-parent</artifactId>
+        <version>1.2.1</version>
+        <relativePath>../../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>bundle</packaging>
+    <name>Apache Felix iPOJO Composite</name>
+    <artifactId>org.apache.felix.ipojo.composite</artifactId>
+    <groupId>org.apache.felix</groupId>
+    <version>1.8.6</version>
+
+    <properties>
+        <ipojo.package.version>1.8.4</ipojo.package.version>
+    </properties>
+
+    <description>
+        iPOJO Composition Model. This is an iPOJO extension to execute service composition.
+    </description>
+    <url>http://felix.apache.org/site/ipojo-composition-tutorial.html</url>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>4.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
+            <!-- Same as the iPOJO core embedded manipulator -->
+            <version>1.8.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo</artifactId>
+            <version>1.8.6</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>.</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>LICENSE*</include>
+                    <include>NOTICE*</include>
+                    <include>DEPENDENCIES*</include>
+                </includes>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>1.4.3</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
+                        <Bundle-Description>iPOJO Composititon Framework
+                        </Bundle-Description>
+                        <Bundle-DocURL>
+                            http://felix.apache.org/site/ipojo-composition-tutorial.html
+                        </Bundle-DocURL>
+                        <Import-Package>
+                            org.apache.felix.ipojo,
+                            org.apache.felix.ipojo.architecture,
+                            org.apache.felix.ipojo.context,
+                            org.apache.felix.ipojo.metadata,
+                            org.apache.felix.ipojo.parser,
+                            org.apache.felix.ipojo.util,
+                            org.apache.felix.ipojo.manipulation,
+                            org.osgi.framework;version=1.3,
+                            !org.objectweb.asm.tree,
+                        </Import-Package>
+                        <Private-Package>
+                            org.apache.felix.ipojo.composite.architecture,
+                            org.apache.felix.ipojo.composite.service*,
+                            org.apache.felix.ipojo.composite.instance,
+                            org.apache.felix.ipojo.composite.util,
+                            <!-- ASM (Manipulator dependencies) -->
+                            org.objectweb.asm.commons,
+                            org.objectweb.asm.signature,
+                            org.objectweb.asm
+                        </Private-Package>
+                        <Export-Package>
+                            org.apache.felix.ipojo.composite; version="${ipojo.package.version}"
+                        </Export-Package>
+                        <Include-Resource>
+                            META-INF/LICENSE=LICENSE,
+                            META-INF/NOTICE=NOTICE,
+                            META-INF/LICENSE.asm=LICENSE.asm,
+                            META-INF/DEPENDENCIES=DEPENDENCIES
+                        </Include-Resource>
+                        <IPOJO-Extension>
+                            composite:org.apache.felix.ipojo.composite.CompositeFactory
+                        </IPOJO-Extension>
+                        <_donotcopy>(CVS|.svn|.+.bak|~.+|metadata.xml)</_donotcopy>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-ipojo-plugin</artifactId>
+                <version>1.8.4</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>ipojo-bundle</goal>
+                        </goals>
+                        <configuration>
+                            <metadata>src/main/resources/metadata.xml</metadata>
+                            <ignoreAnnotations>true</ignoreAnnotations>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>rat-maven-plugin</artifactId>
+                <configuration>
+                    <excludeSubProjects>false</excludeSubProjects>
+                    <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
+                    <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
+                    <excludes>
+                        <param>doc/**/*</param>
+                        <param>maven-eclipse.xml</param>
+                        <param>.checkstyle</param>
+                        <param>.externalToolBuilders/*</param>
+                        <param>LICENSE.asm</param>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                    <enableRulesSummary>false</enableRulesSummary>
+                    <violationSeverity>warning</violationSeverity>
+                    <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.8.6</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.8.6</developerConnection>
+    <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.8.6</url>
+  </scm>
+</project>

Added: release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc Thu Jan 10 14:06:31 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.12 (Darwin)
+
+iEYEABECAAYFAlDQPakACgkQAt4u4QZ7LXXBOACfUG3W2VAdVfZnFS1eyNn0T8Pf
+HgAAni3szcHIaymh0wFfAl0iN/Ljc9r2
+=X4Vq
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc.md5 (added)
+++ release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+a8eeb3bd54b8c23bbf454d5aec0c89e7
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.asc.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+5a3b2e07511eb33ad4ab69952d6c1fd21a273177
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+235c43935796fa4fe363ae3500c35c7a
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.composite-1.8.6.pom.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+a285df5498e69bb94719c6b7493710aab8842a18
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc Thu Jan 10 14:06:31 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.12 (Darwin)
+
+iEYEABECAAYFAlDQPiAACgkQAt4u4QZ7LXXZ3QCghDma1q3W0EusiqCOuAy7D4bz
+P7cAn2JSK/dtgeEjKURCrC8/+5oZvm2Z
+=j4q2
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+80459f6ff8e391b87944ea6d931405f7
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.asc.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+c1f9fb68bac4eaa16f2679f1c76ae40db7bd28a1
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+0bf917254ffaa93f9cf3c27e60d6e85f
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.tar.gz.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+55122548f197b74505a3812e5883a229c37da8e7
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc Thu Jan 10 14:06:31 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.12 (Darwin)
+
+iEYEABECAAYFAlDQPiAACgkQAt4u4QZ7LXULlQCeItFX3PW+R1U05DBb1azPEFZs
+CWgAmwTYgDvolVAPNFPZUg1jCft/xGd3
+=aO3d
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+8cc89424047673ac59ad4166f3d679d9
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.asc.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+727045aa9c4912edbe8ec045ce50d375c67d55be
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+41cab7769d061bf51493954222ce31e5
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6-project.zip.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+ae5f8b40ce0b1f1af922c979feaa35b573d425ff
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom Thu Jan 10 14:06:31 2013
@@ -0,0 +1,126 @@
+<!--
+  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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>felix-parent</artifactId>
+        <version>1.2.1</version>
+        <relativePath>../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>org.apache.felix.ipojo.runtime-project</artifactId>
+    <version>1.8.6</version>
+    <name>Apache Felix iPOJO Runtime Project</name>
+    <packaging>pom</packaging>
+
+    <description>
+        The iPOJO runtime project contains the core iPOJO bundle, the composite support and the annotations.
+    </description>
+
+    <modules>
+        <module>core</module>
+        <module>composite</module>
+        <module>annotations</module>
+    </modules>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>.</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>LICENSE*</include>
+                    <include>NOTICE*</include>
+                    <include>DEPENDENCIES*</include>
+                </includes>
+            </resource>
+        </resources>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-assembly-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>make-assembly</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>single</goal>
+                                </goals>
+                                <configuration>
+                                    <descriptorRefs>
+                                        <descriptorRef>project</descriptorRef>
+                                    </descriptorRefs>
+                                    <!-- we don't want to attach all the assemblies, such as bz2 -->
+                                    <attach>false</attach>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <!-- only attach the project and bin assemblies, in tar.gz and zip flavors -->
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>build-helper-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-assemblies</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>attach-artifact</goal>
+                                </goals>
+                                <configuration>
+                                    <artifacts>
+                                        <artifact>
+                                            <file>
+                                                ${project.build.directory}/${project.artifactId}-${project.version}-project.tar.gz
+                                            </file>
+                                            <classifier>project</classifier>
+                                            <type>tar.gz</type>
+                                        </artifact>
+                                        <artifact>
+                                            <file>
+                                                ${project.build.directory}/${project.artifactId}-${project.version}-project.zip
+                                            </file>
+                                            <classifier>project</classifier>
+                                            <type>zip</type>
+                                        </artifact>
+                                    </artifacts>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.8.6</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.8.6</developerConnection>
+    <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.8.6</url>
+  </scm>
+</project>

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc Thu Jan 10 14:06:31 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.12 (Darwin)
+
+iEYEABECAAYFAlDQPiAACgkQAt4u4QZ7LXUmFACfY42msEPhxBWNGgH+xlWop6vF
+eiEAn35zYT9um1Znpwg1+TWVXQSdAJas
+=ZnNd
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+edf0229e21fa7c8923b46b5336c67f78
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.asc.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+823512ffe60168bc2da722c29449730426196a33
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.md5 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+5dec86846d871b3f134dc8bf79964321
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.8.6.pom.sha1 Thu Jan 10 14:06:31 2013
@@ -0,0 +1 @@
+9fbd38eeaeec2c7076f2351b49534856682548af
\ No newline at end of file