You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cu...@apache.org on 2012/05/08 13:22:47 UTC

svn commit: r1335419 [8/8] - in /aries/trunk: ./ application/ application/application-api/ application/application-api/src/main/java/org/apache/aries/application/management/ application/application-api/src/main/java/org/apache/aries/application/managem...

Modified: aries/trunk/samples/blueprint/idverifier/idverifier-assembly/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/idverifier/idverifier-assembly/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/blueprint/idverifier/idverifier-assembly/pom.xml (original)
+++ aries/trunk/samples/blueprint/idverifier/idverifier-assembly/pom.xml Tue May  8 11:22:40 2012
@@ -1,155 +1,155 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Copyright 2010 
-  
-   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">
-
-	<modelVersion>4.0.0</modelVersion>
-
-	<parent>
-		<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-		<artifactId>idverifier</artifactId>
-		<version>0.3.1-SNAPSHOT</version>
-	</parent>
-
-	<artifactId>org.apache.aries.samples.blueprint.idverifier.assembly</artifactId>
-	<name>Apache Aries Blueprint Sample - ID Verifier Assembly</name>
-	<packaging>pom</packaging>
-
-	<dependencies>	
-
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.main</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.shell</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.shell.tui</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.configadmin</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.felix</groupId>
-			<artifactId>org.apache.felix.eventadmin</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.ops4j.pax.logging</groupId>
-			<artifactId>pax-logging-api</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.ops4j.pax.logging</groupId>
-			<artifactId>pax-logging-service</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.aries.proxy</groupId>
-			<artifactId>org.apache.aries.proxy</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.aries.blueprint</groupId>
-			<artifactId>org.apache.aries.blueprint</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.aries</groupId>
-			<artifactId>org.apache.aries.util</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.aries.jmx</groupId>
-			<artifactId>org.apache.aries.jmx.blueprint</artifactId>
-		</dependency>
-		<dependency>
-             <groupId>asm</groupId>
-             <artifactId>asm-all</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-			<artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
-            <version>${project.version}</version>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-			<artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
-            <version>${project.version}</version>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-			<artifactId>org.apache.aries.samples.blueprint.idverifier.client</artifactId>
-            <version>${project.version}</version>
-		</dependency>
-
-
-	</dependencies>
-
-	<build>
-
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-resources-plugin</artifactId>
-				<configuration>
-					<outputDirectory>${project.build.directory}</outputDirectory>
-				</configuration>
-				<executions>
-					<execution>
-						<id>filter</id>
-						<phase>generate-resources</phase>
-						<goals>
-							<goal>resources</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-dependency-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>copy</id>
-						<phase>package</phase>
-						<goals>
-							<goal>copy-dependencies</goal>
-						</goals>
-						<configuration>
-							<excludeTransitive>true</excludeTransitive>
-							<outputDirectory>${project.build.directory}/bundles</outputDirectory>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
-	</build>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2010 
+  
+   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">
+
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+		<artifactId>idverifier</artifactId>
+		<version>1.0.0-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>org.apache.aries.samples.blueprint.idverifier.assembly</artifactId>
+	<name>Apache Aries Blueprint Sample - ID Verifier Assembly</name>
+	<packaging>pom</packaging>
+
+	<dependencies>	
+
+		<dependency>
+			<groupId>org.apache.felix</groupId>
+			<artifactId>org.apache.felix.main</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.felix</groupId>
+			<artifactId>org.apache.felix.shell</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.felix</groupId>
+			<artifactId>org.apache.felix.shell.tui</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.felix</groupId>
+			<artifactId>org.apache.felix.configadmin</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.felix</groupId>
+			<artifactId>org.apache.felix.eventadmin</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.ops4j.pax.logging</groupId>
+			<artifactId>pax-logging-api</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.ops4j.pax.logging</groupId>
+			<artifactId>pax-logging-service</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.aries.proxy</groupId>
+			<artifactId>org.apache.aries.proxy</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.aries</groupId>
+			<artifactId>org.apache.aries.util</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.aries.jmx</groupId>
+			<artifactId>org.apache.aries.jmx.blueprint</artifactId>
+		</dependency>
+		<dependency>
+             <groupId>asm</groupId>
+             <artifactId>asm-all</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+			<artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
+            <version>${project.version}</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+			<artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
+            <version>${project.version}</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+			<artifactId>org.apache.aries.samples.blueprint.idverifier.client</artifactId>
+            <version>${project.version}</version>
+		</dependency>
+
+
+	</dependencies>
+
+	<build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-resources-plugin</artifactId>
+				<configuration>
+					<outputDirectory>${project.build.directory}</outputDirectory>
+				</configuration>
+				<executions>
+					<execution>
+						<id>filter</id>
+						<phase>generate-resources</phase>
+						<goals>
+							<goal>resources</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-dependency-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>copy</id>
+						<phase>package</phase>
+						<goals>
+							<goal>copy-dependencies</goal>
+						</goals>
+						<configuration>
+							<excludeTransitive>true</excludeTransitive>
+							<outputDirectory>${project.build.directory}/bundles</outputDirectory>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+
+</project>

Modified: aries/trunk/samples/blueprint/idverifier/idverifier-client/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/idverifier/idverifier-client/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/blueprint/idverifier/idverifier-client/pom.xml (original)
+++ aries/trunk/samples/blueprint/idverifier/idverifier-client/pom.xml Tue May  8 11:22:40 2012
@@ -1,68 +1,68 @@
-<!--
-    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">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-        <artifactId>idverifier</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>org.apache.aries.samples.blueprint.idverifier.client</artifactId>
-    <name>Apache Aries Blueprint Sample - ID Verifier Client</name>
-    <packaging>bundle</packaging>
-    <description>
-        Example blueprint application to demo inlined managers definitions.
-    </description>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.eclipse</groupId>
-            <artifactId>osgi</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.aries.blueprint</groupId>
-            <artifactId>org.apache.aries.blueprint.api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-            <artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-            <artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>${project.artifactId};blueprint.graceperiod:=true;blueprint.timeout:= 60000</Bundle-SymbolicName>
-                        <Bundle-Activator>org.apache.aries.samples.blueprint.idverifier.client.IDVerifierClientActivator</Bundle-Activator>
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-</project>
+<!--
+    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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+        <artifactId>idverifier</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>org.apache.aries.samples.blueprint.idverifier.client</artifactId>
+    <name>Apache Aries Blueprint Sample - ID Verifier Client</name>
+    <packaging>bundle</packaging>
+    <description>
+        Example blueprint application to demo inlined managers definitions.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.eclipse</groupId>
+            <artifactId>osgi</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.blueprint</groupId>
+            <artifactId>org.apache.aries.blueprint.api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+            <artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+            <artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${project.artifactId};blueprint.graceperiod:=true;blueprint.timeout:= 60000</Bundle-SymbolicName>
+                        <Bundle-Activator>org.apache.aries.samples.blueprint.idverifier.client.IDVerifierClientActivator</Bundle-Activator>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Modified: aries/trunk/samples/blueprint/idverifier/idverifier-server/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/idverifier/idverifier-server/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/blueprint/idverifier/idverifier-server/pom.xml (original)
+++ aries/trunk/samples/blueprint/idverifier/idverifier-server/pom.xml Tue May  8 11:22:40 2012
@@ -1,61 +1,61 @@
-<!--
-    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">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-    	<artifactId>idverifier</artifactId>
-    	<version>0.3.1-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
-    <name>Apache Aries Blueprint Sample - ID Verifier Server</name>
-    <packaging>bundle</packaging>
-    <description>
-         Example blueprint application to demo inlined managers definitions.
-    </description>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>                        
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-    <dependencies>
-        <dependency>
-            <groupId>org.eclipse</groupId>
-            <artifactId>osgi</artifactId>
-            <scope>provided</scope>
-        </dependency>
-       <dependency>
-           <groupId>org.apache.aries.blueprint</groupId>
-           <artifactId>org.apache.aries.blueprint.api</artifactId>
-       </dependency>
-       <dependency>
-            <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-            <artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
-</project>
+<!--
+    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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+    	<artifactId>idverifier</artifactId>
+    	<version>1.0.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
+    <name>Apache Aries Blueprint Sample - ID Verifier Server</name>
+    <packaging>bundle</packaging>
+    <description>
+         Example blueprint application to demo inlined managers definitions.
+    </description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>                        
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>org.eclipse</groupId>
+            <artifactId>osgi</artifactId>
+            <scope>provided</scope>
+        </dependency>
+       <dependency>
+           <groupId>org.apache.aries.blueprint</groupId>
+           <artifactId>org.apache.aries.blueprint.api</artifactId>
+       </dependency>
+       <dependency>
+            <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+            <artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+</project>

Modified: aries/trunk/samples/blueprint/idverifier/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/idverifier/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/blueprint/idverifier/pom.xml (original)
+++ aries/trunk/samples/blueprint/idverifier/pom.xml Tue May  8 11:22:40 2012
@@ -1,68 +1,68 @@
-<?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 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">
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.aries.samples</groupId>
-        <artifactId>blueprint</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-    <artifactId>idverifier</artifactId>
-    <name>Apache Aries Blueprint Sample - ID Verifier</name>
-    <packaging>pom</packaging>
-
-    <dependencyManagement>
-        <dependencies>
-
-            <dependency>
-                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-                <artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-                <artifactId>org.apache.aries.samples.blueprint.idverifier.assembly</artifactId>
-                <type>eba</type>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-                <artifactId>org.apache.aries.samples.blueprint.idverifier.client</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
-                <artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            
-        </dependencies>
-    </dependencyManagement>
-
-    <modules>
-        <module>idverifier-api</module>
-        <module>idverifier-server</module>
-        <module>idverifier-client</module>
-        <module>idverifier-assembly</module>
-    </modules>
-
-</project>
+<?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 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">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.aries.samples</groupId>
+        <artifactId>blueprint</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+    <artifactId>idverifier</artifactId>
+    <name>Apache Aries Blueprint Sample - ID Verifier</name>
+    <packaging>pom</packaging>
+
+    <dependencyManagement>
+        <dependencies>
+
+            <dependency>
+                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+                <artifactId>org.apache.aries.samples.blueprint.idverifier.api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+                <artifactId>org.apache.aries.samples.blueprint.idverifier.assembly</artifactId>
+                <type>eba</type>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+                <artifactId>org.apache.aries.samples.blueprint.idverifier.client</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.samples.blueprint.idverifier</groupId>
+                <artifactId>org.apache.aries.samples.blueprint.idverifier.server</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            
+        </dependencies>
+    </dependencyManagement>
+
+    <modules>
+        <module>idverifier-api</module>
+        <module>idverifier-server</module>
+        <module>idverifier-client</module>
+        <module>idverifier-assembly</module>
+    </modules>
+
+</project>

Modified: aries/trunk/samples/blueprint/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/blueprint/pom.xml (original)
+++ aries/trunk/samples/blueprint/pom.xml Tue May  8 11:22:40 2012
@@ -1,50 +1,50 @@
-<?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 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">
-
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.aries.samples</groupId>
-        <artifactId>samples</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>blueprint</artifactId>
-    <name>Apache Aries Blueprint samples</name>
-    <packaging>pom</packaging>
-    <description>Samples demonstrating the Apache Aries Blueprint implementation</description>
-
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.apache.aries.samples.blueprint</groupId>
-                <artifactId>helloworld</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.aries.samples.blueprint</groupId>
-                <artifactId>idverifier</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
-    <modules>
-        <module>helloworld</module> 
-        <module>idverifier</module> 
-    </modules>
-</project>
+<?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 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">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.aries.samples</groupId>
+        <artifactId>samples</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>blueprint</artifactId>
+    <name>Apache Aries Blueprint samples</name>
+    <packaging>pom</packaging>
+    <description>Samples demonstrating the Apache Aries Blueprint implementation</description>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.aries.samples.blueprint</groupId>
+                <artifactId>helloworld</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.samples.blueprint</groupId>
+                <artifactId>idverifier</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <modules>
+        <module>helloworld</module> 
+        <module>idverifier</module> 
+    </modules>
+</project>

Modified: aries/trunk/samples/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/pom.xml (original)
+++ aries/trunk/samples/pom.xml Tue May  8 11:22:40 2012
@@ -20,14 +20,14 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
     
     <modelVersion>4.0.0</modelVersion>
     
     <groupId>org.apache.aries.samples</groupId>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <artifactId>samples</artifactId>
     <name>Apache Aries Samples</name>
     <packaging>pom</packaging>
@@ -46,82 +46,82 @@
 
     <properties>
         <!-- Aries eba-maven-plugin Version -->
-        <ariesEbaMavenPluginVersion>0.4-SNAPSHOT</ariesEbaMavenPluginVersion>
+        <ariesEbaMavenPluginVersion>1.0.0-SNAPSHOT</ariesEbaMavenPluginVersion>
 
         <!-- Aries Application Versions -->
-        <ariesApplicationApiVersion>0.3.1-SNAPSHOT</ariesApplicationApiVersion>
-        <ariesApplicationVersion>0.3.1-SNAPSHOT</ariesApplicationVersion>
-        <ariesApplicationConvertersVersion>0.3.1-SNAPSHOT</ariesApplicationConvertersVersion>
-        <ariesApplicationDefaultLocalPlatformVersion>0.3.1-SNAPSHOT</ariesApplicationDefaultLocalPlatformVersion>
-        <ariesApplicationDeploymentManagementVersion>0.3.1-SNAPSHOT</ariesApplicationDeploymentManagementVersion>
-        <ariesApplicationInstallVersion>0.3.1-SNAPSHOT</ariesApplicationInstallVersion>
-        <ariesApplicationItestInterfaceVersion>0.3.1-SNAPSHOT</ariesApplicationItestInterfaceVersion>
-        <ariesApplicationManagementVersion>0.3.1-SNAPSHOT</ariesApplicationManagementVersion>
-        <ariesApplicationModellerVersion>0.3.1-SNAPSHOT</ariesApplicationModellerVersion>
-        <ariesApplicationNoopResolverVersion>0.3.1-SNAPSHOT</ariesApplicationNoopResolverVersion>
-        <ariesApplicationObrResolverVersion>0.3.1-SNAPSHOT</ariesApplicationObrResolverVersion>
-        <ariesApplicationRuntimeVersion>0.3.1-SNAPSHOT</ariesApplicationRuntimeVersion>
-        <ariesApplicationRuntimeFrameworkVersion>0.3.1-SNAPSHOT</ariesApplicationRuntimeFrameworkVersion>
-        <ariesApplicationRuntimeFrameworkManagementVersion>0.3.1-SNAPSHOT</ariesApplicationRuntimeFrameworkManagementVersion>
-        <ariesApplicationRuntimeIsolatedVersion>0.3.1-SNAPSHOT</ariesApplicationRuntimeIsolatedVersion>
-        <ariesApplicationRuntimeRepositoryVersion>0.3.1-SNAPSHOT</ariesApplicationRuntimeRepositoryVersion>
-        <ariesApplicationUtilsVersion>0.3.1-SNAPSHOT</ariesApplicationUtilsVersion>
+        <ariesApplicationApiVersion>1.0.0-SNAPSHOT</ariesApplicationApiVersion>
+        <ariesApplicationVersion>1.0.0-SNAPSHOT</ariesApplicationVersion>
+        <ariesApplicationConvertersVersion>1.0.0-SNAPSHOT</ariesApplicationConvertersVersion>
+        <ariesApplicationDefaultLocalPlatformVersion>1.0.0-SNAPSHOT</ariesApplicationDefaultLocalPlatformVersion>
+        <ariesApplicationDeploymentManagementVersion>1.0.0-SNAPSHOT</ariesApplicationDeploymentManagementVersion>
+        <ariesApplicationInstallVersion>1.0.0-SNAPSHOT</ariesApplicationInstallVersion>
+        <ariesApplicationItestInterfaceVersion>1.0.0-SNAPSHOT</ariesApplicationItestInterfaceVersion>
+        <ariesApplicationManagementVersion>1.0.0-SNAPSHOT</ariesApplicationManagementVersion>
+        <ariesApplicationModellerVersion>1.0.0-SNAPSHOT</ariesApplicationModellerVersion>
+        <ariesApplicationNoopResolverVersion>1.0.0-SNAPSHOT</ariesApplicationNoopResolverVersion>
+        <ariesApplicationObrResolverVersion>1.0.0-SNAPSHOT</ariesApplicationObrResolverVersion>
+        <ariesApplicationRuntimeVersion>1.0.0-SNAPSHOT</ariesApplicationRuntimeVersion>
+        <ariesApplicationRuntimeFrameworkVersion>1.0.0-SNAPSHOT</ariesApplicationRuntimeFrameworkVersion>
+        <ariesApplicationRuntimeFrameworkManagementVersion>1.0.0-SNAPSHOT</ariesApplicationRuntimeFrameworkManagementVersion>
+        <ariesApplicationRuntimeIsolatedVersion>1.0.0-SNAPSHOT</ariesApplicationRuntimeIsolatedVersion>
+        <ariesApplicationRuntimeRepositoryVersion>1.0.0-SNAPSHOT</ariesApplicationRuntimeRepositoryVersion>
+        <ariesApplicationUtilsVersion>1.0.0-SNAPSHOT</ariesApplicationUtilsVersion>
 
         <!-- Aries Blueprint Versions -->
-        <ariesBlueprintAnnotationApiVersion>0.3.2</ariesBlueprintAnnotationApiVersion>
-        <ariesBlueprintAnnotationImplVersion>0.3.2</ariesBlueprintAnnotationImplVersion>
-        <ariesBlueprintApiVersion>0.3.1</ariesBlueprintApiVersion>
-        <ariesBlueprintVersion>0.4.1-SNAPSHOT</ariesBlueprintVersion>
-        <ariesBlueprintCmVersion>0.3.2</ariesBlueprintCmVersion>
-        <ariesBlueprintCoreVersion>0.4.1-SNAPSHOT</ariesBlueprintCoreVersion>
+        <ariesBlueprintAnnotationApiVersion>1.0.0-SNAPSHOT</ariesBlueprintAnnotationApiVersion>
+        <ariesBlueprintAnnotationImplVersion>1.0.0-SNAPSHOT</ariesBlueprintAnnotationImplVersion>
+        <ariesBlueprintApiVersion>1.0.0-SNAPSHOT</ariesBlueprintApiVersion>
+        <ariesBlueprintVersion>1.0.0-SNAPSHOT</ariesBlueprintVersion>
+        <ariesBlueprintCmVersion>1.0.0-SNAPSHOT</ariesBlueprintCmVersion>
+        <ariesBlueprintCoreVersion>1.0.0-SNAPSHOT</ariesBlueprintCoreVersion>
 
         <!-- Aries Jmx Versions -->
         <ariesJmxiApiVersion>0.3.1-SNAPSHOT</ariesJmxiApiVersion>
-        <ariesJmxBlueprintApiVersion>0.3.1-SNAPSHOT</ariesJmxBlueprintApiVersion>
-        <ariesJmxBlueprintVersion>0.3.1-SNAPSHOT</ariesJmxBlueprintVersion>
-        <ariesJmxBlueprintCoreVersion>0.3.1-SNAPSHOT</ariesJmxBlueprintCoreVersion>
-        <ariesJmxVersion>0.3.1-SNAPSHOT</ariesJmxVersion>
-        <ariesJmxCoreVersion>0.3.1-SNAPSHOT</ariesJmxCoreVersion>
-        <ariesJmxWhiteboardVersion>0.3.1-SNAPSHOT</ariesJmxWhiteboardVersion>
+        <ariesJmxBlueprintApiVersion>1.0.0-SNAPSHOT</ariesJmxBlueprintApiVersion>
+        <ariesJmxBlueprintVersion>1.0.0-SNAPSHOT</ariesJmxBlueprintVersion>
+        <ariesJmxBlueprintCoreVersion>1.0.0-SNAPSHOT</ariesJmxBlueprintCoreVersion>
+        <ariesJmxVersion>1.0.0-SNAPSHOT</ariesJmxVersion>
+        <ariesJmxCoreVersion>1.0.0-SNAPSHOT</ariesJmxCoreVersion>
+        <ariesJmxWhiteboardVersion>1.0.0-SNAPSHOT</ariesJmxWhiteboardVersion>
 
         <!-- Aries Jndi Versions -->
-        <ariesJndiApiVersion>0.3.1-SNAPSHOT</ariesJndiApiVersion>
-        <ariesJndiVersion>0.3.2-SNAPSHOT</ariesJndiVersion>
-        <ariesJndiCoreVersion>0.3.2-SNAPSHOT</ariesJndiCoreVersion>
-        <ariesJndiLegacySupportVersion>0.3.2-SNAPSHOT</ariesJndiLegacySupportVersion>
-        <ariesJndiRmiVersion>0.3.2-SNAPSHOT</ariesJndiRmiVersion>
-        <ariesJndiUrlVersion>0.3.2-SNAPSHOT</ariesJndiUrlVersion>
+        <ariesJndiApiVersion>1.0.0-SNAPSHOT</ariesJndiApiVersion>
+        <ariesJndiVersion>1.0.0-SNAPSHOT</ariesJndiVersion>
+        <ariesJndiCoreVersion>1.0.0-SNAPSHOT</ariesJndiCoreVersion>
+        <ariesJndiLegacySupportVersion>1.0.0-SNAPSHOT</ariesJndiLegacySupportVersion>
+        <ariesJndiRmiVersion>1.0.0-SNAPSHOT</ariesJndiRmiVersion>
+        <ariesJndiUrlVersion>1.0.0-SNAPSHOT</ariesJndiUrlVersion>
 
         <!-- Aries Jpa Versions -->
-        <ariesJpaApiVersion>0.3.1-SNAPSHOT</ariesJpaApiVersion>
-        <ariesJpaBlueprintAriesVersion>0.3.1-SNAPSHOT</ariesJpaBlueprintAriesVersion>
-        <ariesJpaContainerVersion>0.3.1-SNAPSHOT</ariesJpaContainerVersion>
-        <ariesJpaContainerContextVersion>0.3.1-SNAPSHOT</ariesJpaContainerContextVersion>
+        <ariesJpaApiVersion>1.0.0-SNAPSHOT</ariesJpaApiVersion>
+        <ariesJpaBlueprintAriesVersion>1.0.0-SNAPSHOT</ariesJpaBlueprintAriesVersion>
+        <ariesJpaContainerVersion>1.0.0-SNAPSHOT</ariesJpaContainerVersion>
+        <ariesJpaContainerContextVersion>1.0.0-SNAPSHOT</ariesJpaContainerContextVersion>
         
         <!-- Aries Proxy Versions -->
-        <ariesProxyApiVersion>0.4</ariesProxyApiVersion>
-        <ariesProxyVersion>0.4</ariesProxyVersion>
-        <ariesProxyImplVersion>0.4</ariesProxyImplVersion>
+        <ariesProxyApiVersion>1.0.0-SNAPSHOT</ariesProxyApiVersion>
+        <ariesProxyVersion>1.0.0-SNAPSHOT</ariesProxyVersion>
+        <ariesProxyImplVersion>1.0.0-SNAPSHOT</ariesProxyImplVersion>
 
         <!-- Aries Quiesce Versions -->
-        <ariesQuiesceApiVersion>0.3</ariesQuiesceApiVersion>
-        <ariesQuiesceManagerVersion>0.3.1</ariesQuiesceManagerVersion>
+        <ariesQuiesceApiVersion>1.0.0-SNAPSHOT</ariesQuiesceApiVersion>
+        <ariesQuiesceManagerVersion>1.0.0-SNAPSHOT</ariesQuiesceManagerVersion>
         
 
         <!-- Aries Testsupport Versions -->
-        <ariesTestsupportUnitVersion>0.4</ariesTestsupportUnitVersion>
+        <ariesTestsupportUnitVersion>1.0.0-SNAPSHOT</ariesTestsupportUnitVersion>
 
         <!-- Aries Transaction Versions -->
-        <ariesTransactionBlueprintVersion>0.3.1-SNAPSHOT</ariesTransactionBlueprintVersion>
-        <ariesTransactionManagerVersion>0.3.1-SNAPSHOT</ariesTransactionManagerVersion>
-        <ariesTransactionTestdsVersion>0.3.1-SNAPSHOT</ariesTransactionTestdsVersion>
-        <ariesTransactionWrappersVersion>0.3.1-SNAPSHOT</ariesTransactionWrappersVersion>
+        <ariesTransactionBlueprintVersion>1.0.0-SNAPSHOT</ariesTransactionBlueprintVersion>
+        <ariesTransactionManagerVersion>1.0.0-SNAPSHOT</ariesTransactionManagerVersion>
+        <ariesTransactionTestdsVersion>1.0.0-SNAPSHOT</ariesTransactionTestdsVersion>
+        <ariesTransactionWrappersVersion>1.0.0-SNAPSHOT</ariesTransactionWrappersVersion>
 
         <!-- Aries Util Versions -->
-        <ariesUtilVersion>0.5-SNAPSHOT</ariesUtilVersion>
+        <ariesUtilVersion>1.0.0-SNAPSHOT</ariesUtilVersion>
 
         <!-- Aries Web Versions -->
-        <ariesWebVersion>0.3.1-SNAPSHOT</ariesWebVersion>
+        <ariesWebVersion>1.0.0-SNAPSHOT</ariesWebVersion>
 
 
 
@@ -442,7 +442,7 @@
             <dependency>
                 <groupId>org.apache.aries.jmx</groupId>
                 <artifactId>org.apache.aries.jmx.api</artifactId>
-                <version>${ariesJmxApiVersion}</version>
+                <version>1.0.0-SNAPSHOT</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.aries.jmx</groupId>

Modified: aries/trunk/samples/twitter/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/twitter/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/twitter/pom.xml (original)
+++ aries/trunk/samples/twitter/pom.xml Tue May  8 11:22:40 2012
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.aries.samples</groupId>
         <artifactId>samples</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
 
     <groupId>org.apache.aries.samples.twitter</groupId>

Modified: aries/trunk/samples/twitter/twitter-bundle/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/twitter/twitter-bundle/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/twitter/twitter-bundle/pom.xml (original)
+++ aries/trunk/samples/twitter/twitter-bundle/pom.xml Tue May  8 11:22:40 2012
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.aries.samples.twitter</groupId>
         <artifactId>twitter</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
 
 	<artifactId>org.apache.aries.samples.twitter.bundle</artifactId>

Modified: aries/trunk/samples/twitter/twitter-eba/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/twitter/twitter-eba/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/twitter/twitter-eba/pom.xml (original)
+++ aries/trunk/samples/twitter/twitter-eba/pom.xml Tue May  8 11:22:40 2012
@@ -26,7 +26,7 @@ under the License.
     <parent>
         <groupId>org.apache.aries.samples.twitter</groupId>
         <artifactId>twitter</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
 
     <artifactId>org.apache.aries.samples.twitter.eba</artifactId>

Modified: aries/trunk/samples/twitter/twitter-itests/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/twitter/twitter-itests/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/twitter/twitter-itests/pom.xml (original)
+++ aries/trunk/samples/twitter/twitter-itests/pom.xml Tue May  8 11:22:40 2012
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>twitter</artifactId>
         <groupId>org.apache.aries.samples.twitter</groupId>
-        <version>0.3.1-SNAPSHOT</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
     
     <modelVersion>4.0.0</modelVersion>
@@ -57,7 +57,7 @@
 		<dependency>
 			<groupId>org.apache.aries.proxy</groupId>
 			<artifactId>org.apache.aries.proxy</artifactId>
-			<version>0.4.1-SNAPSHOT</version>
+			<version>1.0.0-SNAPSHOT</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>

Modified: aries/trunk/samples/twitter/twitter-twitter4j/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/twitter/twitter-twitter4j/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/samples/twitter/twitter-twitter4j/pom.xml (original)
+++ aries/trunk/samples/twitter/twitter-twitter4j/pom.xml Tue May  8 11:22:40 2012
@@ -1,68 +1,68 @@
-<!--
- 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">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.aries.samples.twitter</groupId>
-        <artifactId>twitter</artifactId>
-        <version>0.3.1-SNAPSHOT</version>
-    </parent>
-    <artifactId>org.apache.aries.samples.twitter.twitter4j</artifactId>
-    <packaging>bundle</packaging>
-    <name>Apache Aries Bundlise Twitter4j</name>
-    <description>
-      Module used to bundlelise twitter4j 
-    </description>
-    <dependencies>
-        <dependency>
-            <groupId>net.homeip.yusuke</groupId>
-            <artifactId>twitter4j</artifactId>
-        </dependency>
-	</dependencies>
-    <build>
-        <plugins>
-            <plugin>
-			<groupId>org.apache.felix</groupId>
-              <artifactId>maven-bundle-plugin</artifactId>
-              <version>1.4.0</version>
-              <extensions>true</extensions>
-              <configuration>
-                  <instructions>
-                      <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-                      <Bundle-Name>${project.name}</Bundle-Name>
-                      <Bundle-Version>${project.version}</Bundle-Version>
-					  <Embed-Dependency>*;scope=compile|runtime;inline=true</Embed-Dependency>	
-					  <Import-Package>com.sun.syndication.feed.synd;resolution:=optional,com.sun.syndication.io;resolution:=optional,javax.crypto,javax.crypto.spec,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.stream,org.slf4j,org.w3c.dom,org.xml.sax,twitter4j;version="2.0.8"</Import-Package>
-					  <Export-Package>twitter4j;version=2.0.8</Export-Package>
-                      <executions>
-                        <execution>
-                          <id>bundle-manifest</id>
-                          <phase>process-classes</phase>
-						  <goals>    
-							<goal>manifest</goal>
-						  </goals>  		
-                        </execution>
-                      </executions>
-                  </instructions>
-              </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-</project>
+<!--
+ 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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.aries.samples.twitter</groupId>
+        <artifactId>twitter</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </parent>
+    <artifactId>org.apache.aries.samples.twitter.twitter4j</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Aries Bundlise Twitter4j</name>
+    <description>
+      Module used to bundlelise twitter4j 
+    </description>
+    <dependencies>
+        <dependency>
+            <groupId>net.homeip.yusuke</groupId>
+            <artifactId>twitter4j</artifactId>
+        </dependency>
+	</dependencies>
+    <build>
+        <plugins>
+            <plugin>
+			<groupId>org.apache.felix</groupId>
+              <artifactId>maven-bundle-plugin</artifactId>
+              <version>1.4.0</version>
+              <extensions>true</extensions>
+              <configuration>
+                  <instructions>
+                      <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                      <Bundle-Name>${project.name}</Bundle-Name>
+                      <Bundle-Version>${project.version}</Bundle-Version>
+					  <Embed-Dependency>*;scope=compile|runtime;inline=true</Embed-Dependency>	
+					  <Import-Package>com.sun.syndication.feed.synd;resolution:=optional,com.sun.syndication.io;resolution:=optional,javax.crypto,javax.crypto.spec,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.stream,org.slf4j,org.w3c.dom,org.xml.sax,twitter4j;version="2.0.8"</Import-Package>
+					  <Export-Package>twitter4j;version=2.0.8</Export-Package>
+                      <executions>
+                        <execution>
+                          <id>bundle-manifest</id>
+                          <phase>process-classes</phase>
+						  <goals>    
+							<goal>manifest</goal>
+						  </goals>  		
+                        </execution>
+                      </executions>
+                  </instructions>
+              </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-api/src/main/java/org/apache/aries/jmx/blueprint/BlueprintMetadataMBean.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-api/src/main/java/org/apache/aries/jmx/blueprint/BlueprintStateMBean.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-api/src/main/java/org/apache/aries/jmx/blueprint/Item.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-api/src/main/java/org/apache/aries/jmx/blueprint/JmxConstants.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/impl/Activator.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/impl/BlueprintMetadata.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/impl/BlueprintState.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-core/src/test/java/org/apache/aries/jmx/blueprint/impl/BlueprintMetadataTest.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-blueprint-core/src/test/java/org/apache/aries/jmx/blueprint/impl/BlueprintStateTest.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-itests/src/test/java/org/apache/aries/jmx/test/blueprint/BlueprintMBeanTest.java
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/sandbox/jmx-next/jmx-itests/src/test/java/org/apache/aries/jmx/test/blueprint/framework/
            ('svn:mergeinfo' removed)

Modified: aries/trunk/spi-fly/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/spi-fly/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/spi-fly/pom.xml (original)
+++ aries/trunk/spi-fly/pom.xml Tue May  8 11:22:40 2012
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java6-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
 
     <groupId>org.apache.aries.spifly</groupId>

Modified: aries/trunk/subsystem/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/subsystem/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/subsystem/pom.xml (original)
+++ aries/trunk/subsystem/pom.xml Tue May  8 11:22:40 2012
@@ -19,7 +19,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 

Modified: aries/trunk/testsupport/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/testsupport/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/testsupport/pom.xml (original)
+++ aries/trunk/testsupport/pom.xml Tue May  8 11:22:40 2012
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
@@ -30,7 +30,7 @@
     <artifactId>testsupport</artifactId>
     <name>Apache Aries Test Support</name>
     <packaging>pom</packaging>
-    <version>0.5-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
 
     <description>
         Test Support for OSGi - reactor pom

Modified: aries/trunk/testsupport/testsupport-unit/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/testsupport/testsupport-unit/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/testsupport/testsupport-unit/pom.xml (original)
+++ aries/trunk/testsupport/testsupport-unit/pom.xml Tue May  8 11:22:40 2012
@@ -20,7 +20,7 @@
   <parent>
   <groupId>org.apache.aries</groupId>
        <artifactId>java5-parent</artifactId>
-       <version>0.5</version>
+       <version>1.0.0-SNAPSHOT</version>
        <relativePath />
   </parent>
 
@@ -28,7 +28,7 @@
   <artifactId>org.apache.aries.testsupport.unit</artifactId>
   <packaging>bundle</packaging>
   <name>Apache Aries Unit Test Support</name>
-  <version>0.5-SNAPSHOT</version>
+  <version>1.0.0-SNAPSHOT</version>
   <description>
       This bundle provides unit test support.
   </description>
@@ -65,10 +65,13 @@
       <artifactId>junit</artifactId>
       <scope>provided</scope>
     </dependency>
+  <!-- Dependent projects need OSGi in the classpath before the pax bundles
+         or risk an "java.lang.NoClassDefFoundError: org.osgi.vendor.framework
+         property not set" error. Use default scope to propagate OSGi as
+         a transitive dependency to other projects. -->
     <dependency>
       <groupId>org.osgi</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.osgi</groupId>

Propchange: aries/trunk/testsupport/testsupport-unit/src/main/java/org/apache/aries/mocks/
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/testsupport/testsupport-unit/src/main/java/org/apache/aries/unittest/
            ('svn:mergeinfo' removed)

Propchange: aries/trunk/transaction/
            ('svn:mergeinfo' removed)

Modified: aries/trunk/transaction/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/pom.xml (original)
+++ aries/trunk/transaction/pom.xml Tue May  8 11:22:40 2012
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
@@ -30,7 +30,7 @@
     <groupId>org.apache.aries.transaction</groupId>
     <artifactId>transaction</artifactId>
     <packaging>pom</packaging>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Aries Transaction - reactor pom</name>
 
     <modules>

Modified: aries/trunk/transaction/transaction-blueprint/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/transaction-blueprint/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/transaction-blueprint/pom.xml (original)
+++ aries/trunk/transaction/transaction-blueprint/pom.xml Tue May  8 11:22:40 2012
@@ -14,21 +14,20 @@
         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">
+<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.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
-        <relativePath/>
+        <version>1.0.0-SNAPSHOT</version>
+        <relativePath />
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.aries.transaction</groupId>
     <artifactId>org.apache.aries.transaction.blueprint</artifactId>
     <packaging>bundle</packaging>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Aries Transaction Blueprint</name>
 
     <scm>
@@ -72,14 +71,14 @@
         <dependency>
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint.core</artifactId>
-            <version>0.4.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.testsupport</groupId>
             <artifactId>org.apache.aries.testsupport.unit</artifactId>
             <scope>test</scope>
-            <version>0.4</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>

Modified: aries/trunk/transaction/transaction-itests/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/transaction-itests/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/transaction-itests/pom.xml (original)
+++ aries/trunk/transaction/transaction-itests/pom.xml Tue May  8 11:22:40 2012
@@ -22,13 +22,13 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
   <groupId>org.apache.aries.transaction</groupId>
   <artifactId>org.apache.aries.transaction.itests</artifactId>
   <name>Apache Aries Transaction Integration Tests</name>
-  <version>0.3.1-SNAPSHOT</version>
+  <version>1.0.0-SNAPSHOT</version>
 
      <scm>
          <connection>scm:svn:http://svn.apache.org/repos/asf/aries/trunk/transaction/itests</connection>
@@ -90,48 +90,48 @@
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint</artifactId>
             <scope>test</scope>
-            <version>0.4.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.proxy</groupId>
             <artifactId>org.apache.aries.proxy</artifactId>
             <scope>test</scope>
-            <version>0.4.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.transaction</groupId>
             <artifactId>org.apache.aries.transaction.manager</artifactId>
             <scope>test</scope>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.transaction</groupId>
             <artifactId>org.apache.aries.transaction.blueprint</artifactId>
             <scope>test</scope>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.transaction</groupId>
             <artifactId>org.apache.aries.transaction.wrappers</artifactId>
             <scope>test</scope>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.transaction</groupId>
             <artifactId>org.apache.aries.transaction.testds</artifactId>
             <scope>test</scope>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.transaction</groupId>
             <artifactId>org.apache.aries.transaction.testbundle</artifactId>
             <scope>test</scope>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
           <groupId>org.apache.aries.testsupport</groupId>
           <artifactId>org.apache.aries.testsupport.unit</artifactId>
-          <version>0.4</version>
+          <version>1.0.0-SNAPSHOT</version>
           <scope>test</scope>
         </dependency>
         <dependency>

Modified: aries/trunk/transaction/transaction-manager/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/transaction-manager/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/transaction-manager/pom.xml (original)
+++ aries/trunk/transaction/transaction-manager/pom.xml Tue May  8 11:22:40 2012
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
@@ -31,7 +31,7 @@
     <artifactId>org.apache.aries.transaction.manager</artifactId>
     <packaging>bundle</packaging>
     <name>Apache Aries Transaction Manager</name> 
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
 
      <scm>
          <connection>scm:svn:http://svn.apache.org/repos/asf/aries/trunk/transaction/manager</connection>
@@ -77,7 +77,7 @@
             <groupId>org.apache.aries</groupId>
             <artifactId>org.apache.aries.util</artifactId>
             <scope>provided</scope>
-            <version>0.5-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>

Modified: aries/trunk/transaction/transaction-testbundle/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/transaction-testbundle/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/transaction-testbundle/pom.xml (original)
+++ aries/trunk/transaction/transaction-testbundle/pom.xml Tue May  8 11:22:40 2012
@@ -22,13 +22,13 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
   <groupId>org.apache.aries.transaction</groupId>
   <artifactId>org.apache.aries.transaction.testbundle</artifactId>
   <packaging>bundle</packaging>
-  <version>0.3.1-SNAPSHOT</version>
+  <version>1.0.0-SNAPSHOT</version>
   <name>Apache Aries Transaction Test Bundle</name>
 
      <scm>

Modified: aries/trunk/transaction/transaction-testds/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/transaction-testds/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/transaction-testds/pom.xml (original)
+++ aries/trunk/transaction/transaction-testds/pom.xml Tue May  8 11:22:40 2012
@@ -19,13 +19,13 @@
 	<parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
 	</parent>
 	<groupId>org.apache.aries.transaction</groupId>
 	<artifactId>org.apache.aries.transaction.testds</artifactId>
 	<name>Apache Aries Transaction Test Datasource Configuration</name>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
 	<packaging>bundle</packaging>
 
      <scm>

Modified: aries/trunk/transaction/transaction-wrappers/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/transaction/transaction-wrappers/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/transaction/transaction-wrappers/pom.xml (original)
+++ aries/trunk/transaction/transaction-wrappers/pom.xml Tue May  8 11:22:40 2012
@@ -22,14 +22,14 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <!-- use 0.4 instead of 0.5 for now as the enforcer doesn't like the JDBC java.sql.Connection stuff -->
+        <!-- use 0.4 instead of 1.0.0 for now as the enforcer doesn't like the JDBC java.sql.Connection stuff -->
         <version>0.4</version>
         <relativePath />
     </parent>
   <groupId>org.apache.aries.transaction</groupId>
   <artifactId>org.apache.aries.transaction.wrappers</artifactId>
   <name>Apache Aries Transaction Enlisting JDBC Datasource</name>
-  <version>0.3.1-SNAPSHOT</version>
+  <version>1.0.0-SNAPSHOT</version>
   <packaging>bundle</packaging>
 
      <scm>
@@ -58,12 +58,12 @@
         <dependency>
             <groupId>org.apache.aries.transaction</groupId>
             <artifactId>org.apache.aries.transaction.manager</artifactId>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries</groupId>
             <artifactId>org.apache.aries.util</artifactId>
-            <version>0.5-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>

Modified: aries/trunk/tutorials/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/tutorials/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/tutorials/pom.xml (original)
+++ aries/trunk/tutorials/pom.xml Tue May  8 11:22:40 2012
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.4-SNAPSHOT</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
     
     

Modified: aries/trunk/util/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/util/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/util/pom.xml (original)
+++ aries/trunk/util/pom.xml Tue May  8 11:22:40 2012
@@ -21,13 +21,13 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
     <artifactId>org.apache.aries.util-parent</artifactId>
     <packaging>pom</packaging>
-    <version>0.5-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
 
     <name>Apache Aries Util</name>
     <description>

Modified: aries/trunk/util/util-r42/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/util/util-r42/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/util/util-r42/pom.xml (original)
+++ aries/trunk/util/util-r42/pom.xml Tue May  8 11:22:40 2012
@@ -21,13 +21,13 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
     <artifactId>org.apache.aries.util-r42</artifactId>
     <packaging>jar</packaging>
-    <version>0.5-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Aries Util classes compiled under r 42 framework</name>
     <description>
         This bundle contains the OSGi common util for Apache Aries classes that need to be compiled under r 4.2
@@ -83,7 +83,7 @@
         <dependency>
             <groupId>org.apache.aries.testsupport</groupId>
             <artifactId>org.apache.aries.testsupport.unit</artifactId>
-            <version>0.3</version>
+            <version>1.0.0-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>

Propchange: aries/trunk/util/util-r42/src/test/java/org/apache/aries/util/VersionRangeTest.java
            ('svn:mergeinfo' removed)

Modified: aries/trunk/util/util/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/util/util/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/util/util/pom.xml (original)
+++ aries/trunk/util/util/pom.xml Tue May  8 11:22:40 2012
@@ -21,13 +21,13 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
     <artifactId>org.apache.aries.util</artifactId>
     <packaging>bundle</packaging>
-    <version>0.5-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Aries Util</name>
     <description>
         This bundle contains the OSGi common util for Apache Aries
@@ -71,7 +71,7 @@
         <dependency>
             <groupId>org.apache.aries</groupId>
             <artifactId>org.apache.aries.util-r42</artifactId>
-            <version>0.5-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
@@ -93,7 +93,7 @@
         <dependency>
             <groupId>org.apache.aries.testsupport</groupId>
             <artifactId>org.apache.aries.testsupport.unit</artifactId>
-            <version>0.4</version>
+            <version>1.0.0-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>

Modified: aries/trunk/versioning/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/versioning/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/versioning/pom.xml (original)
+++ aries/trunk/versioning/pom.xml Tue May  8 11:22:40 2012
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.6-SNAPSHOT</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
@@ -40,4 +40,4 @@
     <module>org.apache.aries.versioning.plugin</module>
   </modules>
 
-</project>
\ No newline at end of file
+</project>

Modified: aries/trunk/web/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/web/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/web/pom.xml (original)
+++ aries/trunk/web/pom.xml Tue May  8 11:22:40 2012
@@ -20,7 +20,7 @@
     <parent>
         <artifactId>java5-parent</artifactId>
         <groupId>org.apache.aries</groupId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
 
@@ -28,7 +28,7 @@
     <groupId>org.apache.aries.web</groupId>
     <artifactId>web</artifactId>
     <packaging>pom</packaging>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Aries Web Component</name>
 
     <modules>

Modified: aries/trunk/web/web-itests/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/web/web-itests/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/web/web-itests/pom.xml (original)
+++ aries/trunk/web/web-itests/pom.xml Tue May  8 11:22:40 2012
@@ -17,7 +17,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
     <modelVersion>4.0.0</modelVersion>
@@ -26,7 +26,7 @@
     <artifactId>org.apache.aries.web.itests</artifactId>
     <packaging>jar</packaging>
     <name>Apache Aries Web integration tests</name>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
 
      <scm>
          <connection>scm:svn:http://svn.apache.org/repos/asf/aries/trunk/web/web-itests</connection>
@@ -54,7 +54,7 @@
             <groupId>org.apache.aries.testsupport</groupId>
             <artifactId>org.apache.aries.testsupport.unit</artifactId>
             <scope>test</scope>
-            <version>0.4</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
@@ -65,7 +65,7 @@
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint.sample</artifactId>
             <scope>test</scope>
-            <version>0.3.3-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
                 <groupId>org.apache.felix</groupId>
@@ -87,19 +87,19 @@
             <groupId>org.apache.aries</groupId>
             <artifactId>org.apache.aries.util</artifactId>
             <scope>test</scope>
-            <version>0.5-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency> 
         <dependency>
             <groupId>org.apache.aries.proxy</groupId>
             <artifactId>org.apache.aries.proxy</artifactId>
             <scope>test</scope>
-            <version>0.4.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.aries.blueprint</groupId>
             <artifactId>org.apache.aries.blueprint</artifactId>
             <scope>test</scope>
-            <version>0.4.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.ops4j.pax.logging</groupId>
@@ -140,7 +140,7 @@
             <groupId>org.apache.aries.web</groupId>
             <artifactId>org.apache.aries.web.urlhandler</artifactId>
             <scope>provided</scope>
-            <version>0.3.1-SNAPSHOT</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
     </dependencies>
 

Modified: aries/trunk/web/web-urlhandler/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/web/web-urlhandler/pom.xml?rev=1335419&r1=1335418&r2=1335419&view=diff
==============================================================================
--- aries/trunk/web/web-urlhandler/pom.xml (original)
+++ aries/trunk/web/web-urlhandler/pom.xml Tue May  8 11:22:40 2012
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.apache.aries</groupId>
         <artifactId>java5-parent</artifactId>
-        <version>0.5</version>
+        <version>1.0.0-SNAPSHOT</version>
         <relativePath />
     </parent>
     <modelVersion>4.0.0</modelVersion>
@@ -28,7 +28,7 @@
     <groupId>org.apache.aries.web</groupId>
     <artifactId>org.apache.aries.web.urlhandler</artifactId>
     <packaging>bundle</packaging>
-    <version>0.3.1-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Aries Web Url handler</name>
 
      <scm>
@@ -71,7 +71,7 @@
             <groupId>org.apache.aries.testsupport</groupId>
             <artifactId>org.apache.aries.testsupport.unit</artifactId>
             <scope>test</scope>
-            <version>0.4</version>
+            <version>1.0.0-SNAPSHOT</version>
         </dependency>
     </dependencies>