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/10/12 09:44:51 UTC

svn commit: r3251 [3/3] - /release/felix/

Added: release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom (added)
+++ release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom Sat Oct 12 07:44:32 2013
@@ -0,0 +1,129 @@
+<!--
+  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>2.1</version>
+        <relativePath>../../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>bundle</packaging>
+    <name>Apache Felix iPOJO Gogo Command</name>
+    <artifactId>org.apache.felix.ipojo.gogo</artifactId>
+    <version>1.11.0</version>
+
+    <description>
+        Provides commands for the Gogo shell to introspect the iPOJO ecosystem.
+    </description>
+    <url>
+        http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
+    </url>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo</artifactId>
+            <version>1.11.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo.annotations</artifactId>
+            <version>1.10.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>4.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <version>4.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.gogo.runtime</artifactId>
+            <version>0.6.1</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>2.3.7</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-Name>Apache Felix iPOJO Gogo Command</Bundle-Name>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
+                        <Bundle-Description>
+                            Gogo commands for iPOJO
+                        </Bundle-Description>
+                        <Bundle-DocURL>
+                            http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html
+                        </Bundle-DocURL>
+                        <Private-Package>org.apache.felix.ipojo.arch.gogo</Private-Package>
+                        <Import-Package>
+                            org.apache.felix.service.command;version=0.6.0, *
+                        </Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-ipojo-plugin</artifactId>
+                <version>1.10.1</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>ipojo-bundle</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.10</version>
+                <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:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.0/org.apache.felix.ipojo.gogo</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.0/org.apache.felix.ipojo.gogo</developerConnection>
+    <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.runtime-project-1.11.0/org.apache.felix.ipojo.gogo</url>
+  </scm>
+</project>

Added: release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUFtwACgkQAt4u4QZ7LXX0LwCfUJsnCVbCsTFlEqMfxi6YqQ0f
+HooAnil82UiNQQQ8OIYkFtnHKqZaw/AO
+=73wQ
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+8a5b6f2290b7e7feed5b1a5bf7f41ee4
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.gogo-1.11.0.pom.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+d8b814ab8af2a6ab3b6827b8b3f52a719cb21a28
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBTcACgkQAt4u4QZ7LXWrPwCfRVkjaH/lrwGnRNRvOpPcpxiI
+eMQAoInTr6pZupa5VI9dnkFKfER5al9z
+=V+pF
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+c4ad26dc4039a9c7c4a6f0a4af30db00
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0-javadoc.jar.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+4e62da77c39fffc4e8953d1e98d0a0fead622817
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBTcACgkQAt4u4QZ7LXXwhgCgh4WTfdJnJ9HuEUpkiww32CW1
+BuUAnjgTA5GvqjwSAFmFgjNiMdSDCwPU
+=FTDs
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+472fa067c5053cbd84c170cd4f1baecb
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0-sources.jar.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+2cda5cec4a76804f503d768777304a9c51653cc9
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBTcACgkQAt4u4QZ7LXUL9QCdGmTuN9gZk06ciALFGt5P9MPQ
+0ZgAoJHI6+AtZvRrJFOPay++Wi3jMTBN
+=lWvW
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+a6f8565f4a957613c1af81aad670cfd7
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.jar.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+932e8fd9d275b32977e30c45d51c94785787560e
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom Sat Oct 12 07:44:32 2013
@@ -0,0 +1,163 @@
+<!--
+  ~ 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>2.1</version>
+        <relativePath>../../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>bundle</packaging>
+    <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
+    <version>1.11.0</version>
+    <name>Apache Felix iPOJO Manipulator</name>
+
+    <description>
+        iPOJO bytecode manipulator. This manipulator is used to instrument java classes in order to be managed by iPOJO.
+    </description>
+
+    <properties>
+            <ipojo.import.packages>[1.11.0,2.0.0)</ipojo.import.packages>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>asm</groupId>
+            <artifactId>asm-all</artifactId>
+            <version>3.3.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo.metadata</artifactId>
+            <version>1.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo.annotations</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+      <dependency>
+          <groupId>org.mockito</groupId>
+          <artifactId>mockito-all</artifactId>
+          <version>1.9.5</version>
+          <scope>test</scope>
+      </dependency>
+      <dependency>
+          <groupId>org.osgi</groupId>
+          <artifactId>org.osgi.core</artifactId>
+          <version>4.2.0</version>
+          <scope>test</scope>
+      </dependency>
+      <dependency>
+          <groupId>commons-io</groupId>
+          <artifactId>commons-io</artifactId>
+          <version>2.4</version>
+          <scope>test</scope>
+      </dependency>
+      <dependency>
+          <groupId>org.easytesting</groupId>
+          <artifactId>fest-assert</artifactId>
+          <version>1.4</version>
+          <scope>test</scope>
+      </dependency>
+    </dependencies>
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>2.3.7</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-Name>iPOJO Manipulator</Bundle-Name>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
+                        <Bundle-Description>iPOJO Manipulator</Bundle-Description>
+                        <Export-Package>org.apache.felix.ipojo.manipulator.*
+                        </Export-Package>
+                        <Private-Package>org.apache.felix.ipojo.manipulation,
+                            org.apache.felix.ipojo.xml.parser, org.objectweb.asm,
+                            org.objectweb.asm.commons, org.objectweb.asm.tree
+                        </Private-Package>
+                    </instructions>
+                    <obrRepository>NONE</obrRepository>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.10</version>
+                <configuration>
+                    <enableRulesSummary>false</enableRulesSummary>
+                    <violationSeverity>warning</violationSeverity>
+                    <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <!-- check src only (except remote resources additions) -->
+                    <includes>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>src/main/appended-resources/**</exclude>
+                        <exclude>src/main/resources/META-INF/services/org.apache.felix.ipojo.manipulator.spi.Module</exclude>
+                        <exclude>src/test/resources/MANIFEST.MF</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+
+        </plugins>
+    </build>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator</developerConnection>
+    <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator</url>
+  </scm>
+</project>

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBTcACgkQAt4u4QZ7LXVDYQCaAh/3NtMN2fxUokvDetQBvgqn
+FroAoMLk5+6e1diojy0o3cyPKHlVwnVA
+=qvfD
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+f3ca2893d1c7c850f8d5dd11e4ed301a
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-1.11.0.pom.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+d72ad45a289099570e73ada7c6cca39ed7fca7ef
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz
==============================================================================
Binary file - no diff available.

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

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBccACgkQAt4u4QZ7LXUKQQCgmJQ498+xYj28Nf0i10TLdspa
+FLwAn2w1l3kmXHyq9LK4dUSAo9RugfED
+=PSxI
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+c95048d7db3ddba8e3b8e3173e123525
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.tar.gz.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+7911dc494633bc2c45b2303efaa32e451653f71a
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEUEABECAAYFAlJUBccACgkQAt4u4QZ7LXVSgQCXSClnS3+SlThFwruX5UL7a66C
+9wCeJFXFnr+HX6oAjyyB3CFsqcVmpMc=
+=ULeF
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+8aae7020fcfd25830e0dffdc30ebabf7
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0-source-release.zip.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+960749329049c4c60284c9a6c47f467df3506a18
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom Sat Oct 12 07:44:32 2013
@@ -0,0 +1,53 @@
+<!--
+  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>2.1</version>
+        <relativePath>../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>org.apache.felix.ipojo.manipulator-project</artifactId>
+    <version>1.11.0</version>
+    <name>Apache Felix iPOJO Manipulator Project</name>
+    <packaging>pom</packaging>
+
+    <description>
+        The iPOJO Manipulator project contains the iPOJO packaging process and
+        several front-ends for Ant, Maven and BND.
+    </description>
+
+    <modules>
+        <module>annotations</module>
+        <module>manipulator</module>
+        <module>manipulator-it</module>
+        <module>ipojo-ant-task</module>
+        <module>maven-ipojo-plugin</module>
+        <module>bnd-ipojo-plugin</module>
+        <module>online-manipulator</module>
+    </modules>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0</url>
+    </scm>
+
+</project>

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBccACgkQAt4u4QZ7LXXShgCfd0hq1JGkNl2iRdA5dNt+JLOS
+5JkAnRVcfL7lNDbIylj+OzNXOivHtZ0e
+=HHBq
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+796cd71cf692b9526a5a9bd5c8910b01
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator-project-1.11.0.pom.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+c167c67f16b7ac60c0f3b412c245b0ff7d880a09
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBW0ACgkQAt4u4QZ7LXUmWwCeM+8ZlEAHDelnJ+giXZxoPx+5
+K3cAmgMaLeeLAB5od5FSFSUdSCulc3rX
+=H8Oa
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+9f1237c765e9b5d040c3c5dc54b42b62
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-javadoc.jar.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+e7367679ae0eceda8a8315f82a95b10b8f430058
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBW0ACgkQAt4u4QZ7LXU4PgCeKLhqD3awBA42GUozzB0anNzk
+3BYAn3IU8XSzoMGFD1M9kOhUE8ViVRjk
+=ni3n
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+e8d50f4f67a02694244412d8252d0300
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0-sources.jar.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+0753809e8693528ba9f2e3a4bf4684713d3d0ae5
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar
==============================================================================
Binary file - no diff available.

Propchange: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBW0ACgkQAt4u4QZ7LXVQUQCgv5ExJYnS1fhWbAp5Mk/cOFTy
+ATAAnA/R9FpgHnbGfTZaXHJmIo4VXqtr
+=u9jP
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+7b58116dcfc8b8f0fb3d2ed439cc5867
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.jar.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+a4d3f1079cbc0a3f2aae496c6d3c2c07b32d06e0
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom Sat Oct 12 07:44:32 2013
@@ -0,0 +1,187 @@
+<!--
+  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>2.1</version>
+        <relativePath>../../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <packaging>bundle</packaging>
+    <name>Apache Felix iPOJO - Online Manipulator</name>
+    <artifactId>org.apache.felix.ipojo.manipulator.online</artifactId>
+    <version>1.11.0</version>
+
+    <description>
+        iPOJO online manipulator allowing install time manipulation of iPOJO bundle.
+    </description>
+    <url>
+        http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/apache-felix-ipojo-online-manipulator.html
+    </url>
+
+    <properties>
+        <ipojo.import.packages>[1.11.0,2.0.0)</ipojo.import.packages>
+        <ipojo.manipulator.version>${project.version}</ipojo.manipulator.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>4.3.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <version>4.0.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo.metadata</artifactId>
+            <version>1.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>asm</groupId>
+            <artifactId>asm-all</artifactId>
+            <version>3.3.1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>asm</groupId>
+                    <artifactId>asm-tree</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-all</artifactId>
+            <version>1.9.5</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.0</version>
+                <configuration>
+                    <target>1.5</target>
+                    <source>1.5</source>
+                    <testTarget>1.5</testTarget>
+                    <testSource>1.5</testSource>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>2.3.7</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Private-Package>org.apache.felix.ipojo.online.manipulator</Private-Package>
+                        <Bundle-DocURL>
+                            http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/apache-felix-ipojo-online-manipulator.html
+                        </Bundle-DocURL>
+                        <Export-Package>
+                            org.apache.felix.ipojo.manipulation*; version="${ipojo.manipulator.version}",
+                            org.apache.felix.ipojo.xml.parser; version="${ipojo.manipulator.version}",
+                            org.apache.felix.ipojo.manipulator*; version="${ipojo.manipulator.version}",
+                            org.apache.felix.ipojo.annotations*; version="${ipojo.manipulator.version}",
+                        </Export-Package>
+                        <Private-Package>
+                            org.objectweb.asm,
+                            org.objectweb.asm.commons,
+                            org.objectweb.asm.signature,
+                            org.objectweb.asm.tree,
+                            org.apache.felix.ipojo.online.manipulator
+                        </Private-Package>
+                        <Import-Package>!sun.io, org.osgi.framework;version=1.3, *
+                        </Import-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-ipojo-plugin</artifactId>
+                <version>${project.version}</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>ipojo-bundle</goal>
+                        </goals>
+                        <configuration>
+                            <ignoreAnnotations>true</ignoreAnnotations>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.10</version>
+                <configuration>
+                    <enableRulesSummary>false</enableRulesSummary>
+                    <violationSeverity>warning</violationSeverity>
+                    <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <!-- check src only (except remote resources additions) -->
+                    <includes>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>src/main/appended-resources/**</exclude>
+                        <exclude>src/main/resources/META-INF/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator.online</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator.online</developerConnection>
+    <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator.online</url>
+  </scm>
+</project>

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUBW0ACgkQAt4u4QZ7LXVsiACdEFqMp8NB1nkkvMHZrIM82NCj
+NmMAoKJyzJdEC8JQEoecA8liLHq2Tagl
+=MDSN
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+a56a3fe4ac2ee098290b8827cff35891
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.manipulator.online-1.11.0.pom.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+36fc9fc0b7d0a29e0579369b45b9d41a0b0a7be4
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.asc (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUFzYACgkQAt4u4QZ7LXXf/ACfeq6WLpGA9knYH8/1H/KEbbSx
+oUEAoL2WrogoIroIw/rkbdMc0wQaHYyO
+=es29
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+944a8f284c997d524024d2398dc60e83
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.tar.gz.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+096f3ba7c005d74e5541827d45618e06b62ee817
\ No newline at end of file

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

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

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.asc (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUFzYACgkQAt4u4QZ7LXXmBwCfQU41G16YO5q36CykxcqDzuDq
+Jx0AoKlha+f4wZz300RVxUiWlVPkKFzB
+=rMEk
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+55664e3377c0f5fa8085c37a7311c2df
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0-source-release.zip.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+8f8b63320f14b405871f103cf95f54713a72adc9
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom Sat Oct 12 07:44:32 2013
@@ -0,0 +1,66 @@
+<!--
+  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>2.1</version>
+        <relativePath>../../pom/pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>org.apache.felix.ipojo.runtime-project</artifactId>
+    <version>1.11.0</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 api.
+    </description>
+
+    <modules>
+        <module>core</module>
+        <module>api</module>
+        <module>composite</module>
+        <module>core-it</module>
+        <module>composite-it</module>
+        <module>ipojo-gogo-commands</module>
+        <module>karaf-feature</module>
+    </modules>
+
+    <profiles>
+        <profile>
+            <id>distributions</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>distributions/quickstart</module>
+                <module>distributions/ten-minutes-tutorial</module>
+                <module>distributions/maven-tutorial</module>
+            </modules>
+        </profile>
+    </profiles>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.0</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.0</developerConnection>
+        <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.0</url>
+    </scm>
+
+</project>

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.asc
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.asc (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.asc Sat Oct 12 07:44:32 2013
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.14 (Darwin)
+
+iEYEABECAAYFAlJUFzYACgkQAt4u4QZ7LXVP4QCglGJfVBqQ48uOp/2M4pa+y9fa
+0FwAn2dHdJaXYSDI00nbt4AH/HLwDXar
+=B/5y
+-----END PGP SIGNATURE-----

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.md5
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.md5 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.md5 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+7e59803bb780fa4637bfbdde3f65eda2
\ No newline at end of file

Added: release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.sha1
==============================================================================
--- release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.sha1 (added)
+++ release/felix/org.apache.felix.ipojo.runtime-project-1.11.0.pom.sha1 Sat Oct 12 07:44:32 2013
@@ -0,0 +1 @@
+643f5d1387a5af1d3f25e7735d7a2bdebd13a762
\ No newline at end of file