[jboss-cvs] JBossAS SVN: r86000 - in projects/aop/branches/Branch_2_1: aop and 8 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 17 12:07:06 EDT 2009


Author: kabir.khan at jboss.com
Date: 2009-03-17 12:07:05 -0400 (Tue, 17 Mar 2009)
New Revision: 86000

Modified:
   projects/aop/branches/Branch_2_1/aop/pom.xml
   projects/aop/branches/Branch_2_1/aophelper/pom.xml
   projects/aop/branches/Branch_2_1/asintegration-core/pom.xml
   projects/aop/branches/Branch_2_1/asintegration-jmx/pom.xml
   projects/aop/branches/Branch_2_1/asintegration-mc/pom.xml
   projects/aop/branches/Branch_2_1/aspects/pom.xml
   projects/aop/branches/Branch_2_1/build/pom.xml
   projects/aop/branches/Branch_2_1/jrockit-pluggable-instrumentor/pom.xml
   projects/aop/branches/Branch_2_1/pluggable-instrumentor/pom.xml
   projects/aop/branches/Branch_2_1/pom.xml
Log:
[maven-release-plugin] prepare release JBoss_AOP_2_1_0_CR1

Modified: projects/aop/branches/Branch_2_1/aop/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/aop/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/aop/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -2,7 +2,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.aop</groupId>

Modified: projects/aop/branches/Branch_2_1/aophelper/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/aophelper/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/aophelper/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -1,137 +1,135 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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.jboss.aop</groupId>
-    <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss.aop</groupId>
-  <artifactId>aophelper</artifactId>
-  <packaging>jar</packaging>
-  <version>2.1.0-SNAPSHOT</version>
-  <name>JBoss AOP Helper</name>
-
-   <pluginRepositories>
-     <pluginRepository>
-         <releases>
-            <updatePolicy>never</updatePolicy>
-         </releases>
-         <snapshots>
-            <enabled>true</enabled>
-         </snapshots>
-         <id>snapshots.jboss.org</id>
-         <name>JBoss Maven Snapshot Repository</name>
-         <url>http://snapshots.jboss.org/maven2</url>
-      </pluginRepository>
-   </pluginRepositories>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.jboss.maven.plugins</groupId>
-      <artifactId>maven-jbossaop-plugin</artifactId>
-      <version>1.0.0.GA</version>
-    </dependency>
-    <!--
-    <dependency>
-      <groupId>org.jboss.aop</groupId>
-      <artifactId>jboss-aop</artifactId>
-    </dependency>
-    -->
-
-
-  </dependencies>
-
-  <repositories>
-    <repository>
-       <id>jboss_repo</id>
-       <name>JBoss Maven Repository</name>
-       <url>http://repository.jboss.com/maven2</url>
-    </repository>
-  </repositories>
-  
-  <build>
-    <finalName>${artifactId}</finalName>
-    <sourceDirectory>src/main/java</sourceDirectory>
-    <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
-    <testSourceDirectory>src/test/java</testSourceDirectory>
-    <outputDirectory>target/classes</outputDirectory>
-    <testOutputDirectory>target/test-classes</testOutputDirectory>
-    <defaultGoal>install</defaultGoal>
-    <resources>
-       <resource>
-          <directory>src/main/resources</directory>
-       </resource>
-    </resources>
-    <testResources>
-       <testResource>
-          <directory>src/test/resources</directory>
-       </testResource>
-    </testResources>
-    <directory>target</directory>
-
-
-    <plugins>
-      <plugin>
-         <artifactId>maven-compiler-plugin</artifactId>
-         <configuration>
-            <source>${jdkVersion}</source>
-            <target>${jdkVersion}</target>
-         </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-   <profiles>
-    <profile>
-      <id>run-aophelper</id>
-      <activation>
-        <property>
-          <name>run-aophelper</name>
-        </property>
-      </activation>
-
-      <build>
-        <plugins>
-            <plugin>
-                <groupId>org.jboss.maven.plugins</groupId>
-                <artifactId>maven-jbossaop-plugin</artifactId>
-                <version>1.0.0.GA</version>
-                <executions>
-                  <execution>
-                    <id>compile</id>
-                    <configuration>
-                      <aoppaths>
-                        <aoppath>src/main/resources/jboss-aop.xml</aoppath>
-                      </aoppaths>
-                    </configuration>
-                    <goals>
-                      <goal>compile</goal>
-                    </goals>
-                  </execution>
-                  <execution>
-                    <id>run</id>
-                    <configuration>
-                      <aoppaths>
-                        <aoppath>src/main/resources/jboss-aop.xml</aoppath>
-                      </aoppaths>
-                      <loadtime>true</loadtime>
-                      <executable>org.jboss.aophelper.ui.AopHelperFrame</executable>
-                    </configuration>
-                    <goals>
-                      <goal>run</goal>
-                    </goals>
-                  </execution> 
-                </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
-  <properties>
-    <jdkVersion>1.5</jdkVersion>
-  </properties>
-
-</project>
+<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.jboss.aop</groupId>
+    <artifactId>jboss-aop-parent</artifactId>
+    <version>2.1.0.CR1</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.aop</groupId>
+  <artifactId>aophelper</artifactId>
+  <packaging>jar</packaging>
+  <version>2.1.0.CR1</version>
+  <name>JBoss AOP Helper</name>
+
+   <pluginRepositories>
+     <pluginRepository>
+         <releases>
+            <updatePolicy>never</updatePolicy>
+         </releases>
+         <snapshots>
+            <enabled>true</enabled>
+         </snapshots>
+         <id>snapshots.jboss.org</id>
+         <name>JBoss Maven Snapshot Repository</name>
+         <url>http://snapshots.jboss.org/maven2</url>
+      </pluginRepository>
+   </pluginRepositories>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.maven.plugins</groupId>
+      <artifactId>maven-jbossaop-plugin</artifactId>
+      <version>1.0.0.GA</version>
+    </dependency>
+    <!--
+    <dependency>
+      <groupId>org.jboss.aop</groupId>
+      <artifactId>jboss-aop</artifactId>
+    </dependency>
+    -->
+
+
+  </dependencies>
+
+  <repositories>
+    <repository>
+       <id>jboss_repo</id>
+       <name>JBoss Maven Repository</name>
+       <url>http://repository.jboss.com/maven2</url>
+    </repository>
+  </repositories>
+  
+  <build>
+    <finalName>${artifactId}</finalName>
+    <sourceDirectory>src/main/java</sourceDirectory>
+    <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
+    <testSourceDirectory>src/test/java</testSourceDirectory>
+    <outputDirectory>target/classes</outputDirectory>
+    <testOutputDirectory>target/test-classes</testOutputDirectory>
+    <defaultGoal>install</defaultGoal>
+    <resources>
+       <resource>
+          <directory>src/main/resources</directory>
+       </resource>
+    </resources>
+    <testResources>
+       <testResource>
+          <directory>src/test/resources</directory>
+       </testResource>
+    </testResources>
+    <directory>target</directory>
+
+
+    <plugins>
+      <plugin>
+         <artifactId>maven-compiler-plugin</artifactId>
+         <configuration>
+            <source>${jdkVersion}</source>
+            <target>${jdkVersion}</target>
+         </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+   <profiles>
+    <profile>
+      <id>run-aophelper</id>
+      <activation>
+        <property>
+          <name>run-aophelper</name>
+        </property>
+      </activation>
+
+      <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jbossaop-plugin</artifactId>
+                <version>1.0.0.GA</version>
+                <executions>
+                  <execution>
+                    <id>compile</id>
+                    <configuration>
+                      <aoppaths>
+                        <aoppath>src/main/resources/jboss-aop.xml</aoppath>
+                      </aoppaths>
+                    </configuration>
+                    <goals>
+                      <goal>compile</goal>
+                    </goals>
+                  </execution>
+                  <execution>
+                    <id>run</id>
+                    <configuration>
+                      <aoppaths>
+                        <aoppath>src/main/resources/jboss-aop.xml</aoppath>
+                      </aoppaths>
+                      <loadtime>true</loadtime>
+                      <executable>org.jboss.aophelper.ui.AopHelperFrame</executable>
+                    </configuration>
+                    <goals>
+                      <goal>run</goal>
+                    </goals>
+                  </execution> 
+                </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+  <properties>
+    <jdkVersion>1.5</jdkVersion>
+  </properties>
+
+</project>
\ No newline at end of file

Modified: projects/aop/branches/Branch_2_1/asintegration-core/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/asintegration-core/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/asintegration-core/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -2,7 +2,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-aop-asintegration-core</artifactId>
@@ -53,15 +53,11 @@
             <phase>process-test-classes</phase>
             <configuration>
               <tasks>
-                <property name="test.jar.suffix" value="-test-classpool-"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/support/a/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/support/b/*.class"/>
-               <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/support/a"/>
-               <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/support/b"/>
+                <property name="test.jar.suffix" value="-test-classpool-" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/support/a/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/support/b/*.class" />
+               <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/support/a" />
+               <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/support/b" />
               </tasks>
             </configuration>
           </execution>
@@ -130,4 +126,4 @@
     </dependency>
   </dependencies>
   
-</project>
+</project>
\ No newline at end of file

Modified: projects/aop/branches/Branch_2_1/asintegration-jmx/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/asintegration-jmx/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/asintegration-jmx/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -2,7 +2,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-aop-asintegration-jmx</artifactId>
@@ -75,26 +75,14 @@
             <phase>process-test-classes</phase>
             <configuration>
               <tasks>
-                <property name="test.jar.suffix" value="-test-classpool-"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a1.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/ucl/support/excluded/a/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a2.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/ucl/support/excluded/a/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b1.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/ucl/support/excluded/b/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b2.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/ucl/support/excluded/b/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c1.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/ucl/support/excluded/c/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c2.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/ucl/support/excluded/c/*.class"/>
-               <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/ucl/support/excluded"/>
+                <property name="test.jar.suffix" value="-test-classpool-" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a1.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/ucl/support/excluded/a/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a2.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/ucl/support/excluded/a/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b1.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/ucl/support/excluded/b/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b2.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/ucl/support/excluded/b/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c1.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/ucl/support/excluded/c/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c2.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/ucl/support/excluded/c/*.class" />
+               <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/ucl/support/excluded" />
               </tasks>
             </configuration>
           </execution>
@@ -146,4 +134,4 @@
     </dependency>
   </dependencies>
   
-</project>
+</project>
\ No newline at end of file

Modified: projects/aop/branches/Branch_2_1/asintegration-mc/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/asintegration-mc/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/asintegration-mc/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -2,7 +2,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-aop-asintegration-mc</artifactId>
@@ -89,38 +89,26 @@
             <phase>process-test-classes</phase>
             <configuration>
               <tasks>
-                <property name="test.jar.suffix" value="-test-classpool-"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a1.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/a/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a2.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/a/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b1.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/b/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b2.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/b/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c1.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/c/*.class"/>
-                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c2.jar"
-                  basedir="${project.build.testOutputDirectory}" 
-                  includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/c/*.class"/>
+                <property name="test.jar.suffix" value="-test-classpool-" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a1.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/a/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}a2.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/a/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b1.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/b/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}b2.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/b/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c1.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/c/*.class" />
+                <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}c2.jar" basedir="${project.build.testOutputDirectory}" includes="org/jboss/test/aop/classpool/jbosscl/support/excluded/c/*.class" />
                 <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}replacereferences-parent.jar">
                   <fileset dir="${project.build.testOutputDirectory}">
-                     <include name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/**"/>
-                     <exclude name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/child/*.class"/>
+                     <include name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/**" />
+                     <exclude name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/child/*.class" />
                   </fileset>
                 </jar>
                 <jar destfile="${project.build.directory}/${artifactId}${test.jar.suffix}replacereferences-child.jar">
                   <fileset dir="${project.build.testOutputDirectory}">
-                     <include name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/**"/>
-                     <exclude name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/parent/ParentCaller.class"/>
+                     <include name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/**" />
+                     <exclude name="org/jboss/test/aop/classpool/jbosscl/support/excluded/replacereferences/parent/ParentCaller.class" />
                   </fileset>
                 </jar>
-                <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/jbosscl/support/excluded"/>
+                <delete dir="${project.build.testOutputDirectory}/org/jboss/test/aop/classpool/jbosscl/support/excluded" />
               </tasks>
             </configuration>
           </execution>
@@ -174,4 +162,4 @@
     </dependency>
   </dependencies>
   
-</project>
+</project>
\ No newline at end of file

Modified: projects/aop/branches/Branch_2_1/aspects/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/aspects/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/aspects/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -2,7 +2,7 @@
   <parent>
     <artifactId>jboss-aop-parent</artifactId>
     <groupId>org.jboss.aop</groupId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-aop-aspects</artifactId>

Modified: projects/aop/branches/Branch_2_1/build/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/build/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/build/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -2,7 +2,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-aop-dist</artifactId>

Modified: projects/aop/branches/Branch_2_1/jrockit-pluggable-instrumentor/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/jrockit-pluggable-instrumentor/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/jrockit-pluggable-instrumentor/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -3,7 +3,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <artifactId>jrockit-pluggable-instrumentor</artifactId>
   <packaging>jar</packaging>

Modified: projects/aop/branches/Branch_2_1/pluggable-instrumentor/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/pluggable-instrumentor/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/pluggable-instrumentor/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.jboss.aop</groupId>
     <artifactId>jboss-aop-parent</artifactId>
-    <version>2.1.0-SNAPSHOT</version>
+    <version>2.1.0.CR1</version>
   </parent>
   <artifactId>pluggable-instrumentor</artifactId>
   <packaging>jar</packaging>

Modified: projects/aop/branches/Branch_2_1/pom.xml
===================================================================
--- projects/aop/branches/Branch_2_1/pom.xml	2009-03-17 15:48:03 UTC (rev 85999)
+++ projects/aop/branches/Branch_2_1/pom.xml	2009-03-17 16:07:05 UTC (rev 86000)
@@ -10,13 +10,13 @@
   <groupId>org.jboss.aop</groupId>
   <artifactId>jboss-aop-parent</artifactId>
   <packaging>pom</packaging>
-  <version>2.1.0-SNAPSHOT</version>
+  <version>2.1.0.CR1</version>
   <description>JBoss AOP</description>
   <name>JBoss AOP Parent POM</name>
   <url>http://www.jboss.org/jbossaop/</url>
   <scm>
-    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/branches/Branch_2_1/</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/branches/Branch_2_1/</developerConnection>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/aop/tags/JBoss_AOP_2_1_0_CR1</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/aop/tags/JBoss_AOP_2_1_0_CR1</developerConnection>
   </scm>
   
   <properties>




More information about the jboss-cvs-commits mailing list