Hibernate SVN: r16944 - validator/trunk/hibernate-validator/src/test/java/org/hibernate/validation/constraints/impl.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-06-24 10:43:50 -0400 (Wed, 24 Jun 2009)
New Revision: 16944
Modified:
validator/trunk/hibernate-validator/src/test/java/org/hibernate/validation/constraints/impl/PatternValidatorTest.java
Log:
Added some more test
Modified: validator/trunk/hibernate-validator/src/test/java/org/hibernate/validation/constraints/impl/PatternValidatorTest.java
===================================================================
--- validator/trunk/hibernate-validator/src/test/java/org/hibernate/validation/constraints/impl/PatternValidatorTest.java 2009-06-24 14:42:43 UTC (rev 16943)
+++ validator/trunk/hibernate-validator/src/test/java/org/hibernate/validation/constraints/impl/PatternValidatorTest.java 2009-06-24 14:43:50 UTC (rev 16944)
@@ -36,7 +36,7 @@
public void testIsValid() {
AnnotationDescriptor<Pattern> descriptor = new AnnotationDescriptor<Pattern>( Pattern.class );
descriptor.setValue( "regexp", "foobar" );
- descriptor.setValue( "message", "{validator.pattern}" );
+ descriptor.setValue( "message", "pattern does not match" );
Pattern p = AnnotationFactory.create( descriptor );
PatternValidator constraint = new PatternValidator();
@@ -48,11 +48,28 @@
assertFalse( constraint.isValid( "This test is not foobar", null ) );
}
+ @Test
+ public void testIsValidForEmptyStringRegexp() {
+ AnnotationDescriptor<Pattern> descriptor = new AnnotationDescriptor<Pattern>( Pattern.class );
+ descriptor.setValue( "regexp", "|^.*foo$" );
+ descriptor.setValue( "message", "pattern does not match" );
+ Pattern p = AnnotationFactory.create( descriptor );
+
+ PatternValidator constraint = new PatternValidator();
+ constraint.initialize( p );
+
+ assertTrue( constraint.isValid( null, null ) );
+ assertTrue( constraint.isValid( "", null ) );
+ assertFalse( constraint.isValid( "bla bla", null ) );
+ assertTrue( constraint.isValid( "foo", null ) );
+ assertTrue( constraint.isValid( "a b c foo", null ) );
+ }
+
@Test(expectedExceptions = ValidationException.class)
public void testInvalidRegularExpression() {
AnnotationDescriptor<Pattern> descriptor = new AnnotationDescriptor<Pattern>( Pattern.class );
descriptor.setValue( "regexp", "(unbalanced parentheses" );
- descriptor.setValue( "message", "{validator.pattern}" );
+ descriptor.setValue( "message", "pattern does not match" );
Pattern p = AnnotationFactory.create( descriptor );
PatternValidator constraint = new PatternValidator();
15 years, 5 months
Hibernate SVN: r16943 - beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-06-24 10:42:43 -0400 (Wed, 24 Jun 2009)
New Revision: 16943
Modified:
beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java
beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java
beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java
Log:
Updated test. There are actuall tow possible violations.
Modified: beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java
===================================================================
--- beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java 2009-06-24 06:52:42 UTC (rev 16942)
+++ beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorArrayBased.java 2009-06-24 14:42:43 UTC (rev 16943)
@@ -47,4 +47,9 @@
this.playedWith[currentPointer] = playedWith;
currentPointer++;
}
+
+ @Override
+ public String toString() {
+ return super.toString();
+ }
}
\ No newline at end of file
Modified: beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java
===================================================================
--- beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java 2009-06-24 06:52:42 UTC (rev 16942)
+++ beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ActorListBased.java 2009-06-24 14:42:43 UTC (rev 16943)
@@ -40,4 +40,9 @@
public void addPlayedWith(Actor playedWith) {
this.playedWith.add( playedWith );
}
+
+ @Override
+ public String toString() {
+ return super.toString();
+ }
}
\ No newline at end of file
Modified: beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java
===================================================================
--- beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java 2009-06-24 06:52:42 UTC (rev 16942)
+++ beanvalidation/trunk/validation-tck/src/main/java/org/hibernate/jsr303/tck/tests/validation/ValidateTest.java 2009-06-24 14:42:43 UTC (rev 16943)
@@ -193,12 +193,12 @@
Set<ConstraintViolation<Actor>> constraintViolations = validator.validate( clint );
- assertEquals( constraintViolations.size(), 1, "Wrong number of constraints" );
+ assertEquals( constraintViolations.size(), 2, "Wrong number of constraints" );
ConstraintViolation constraintViolation = constraintViolations.iterator().next();
assertEquals( "Everyone has a last name.", constraintViolation.getMessage(), "Wrong message" );
- org.testng.Assert.assertEquals( constraintViolation.getRootBean(), clint, "Wrong root entity" );
- org.testng.Assert.assertEquals( constraintViolation.getInvalidValue(), morgan.getLastName(), "Wrong value" );
- assertCorrectPropertyPaths( constraintViolations, "playedWith[0].playedWith[1].lastName" );
+ assertEquals( constraintViolation.getRootBean(), clint, "Wrong root entity" );
+ assertEquals( constraintViolation.getInvalidValue(), morgan.getLastName(), "Wrong value" );
+ assertCorrectPropertyPaths( constraintViolations, "playedWith[0].playedWith[1].lastName", "playedWith[1].lastName" );
}
@Test
@@ -218,12 +218,12 @@
clint.addPlayedWith( morgan );
Set<ConstraintViolation<Actor>> constraintViolations = validator.validate( clint );
- assertEquals( constraintViolations.size(), 1, "Wrong number of constraints" );
+ assertEquals( constraintViolations.size(), 2, "Wrong number of constraints" );
ConstraintViolation constraintViolation = constraintViolations.iterator().next();
assertEquals( "Everyone has a last name.", constraintViolation.getMessage(), "Wrong message" );
assertEquals( constraintViolation.getRootBean(), clint, "Wrong root entity" );
assertEquals( constraintViolation.getInvalidValue(), morgan.getLastName(), "Wrong value" );
- assertCorrectPropertyPaths( constraintViolations, "playedWith[0].playedWith[1].lastName" );
+ assertCorrectPropertyPaths( constraintViolations, "playedWith[0].playedWith[1].lastName", "playedWith[1].lastName" );
}
@Test(expectedExceptions = IllegalArgumentException.class)
15 years, 5 months
Hibernate SVN: r16942 - in core/branches/Branch_3_3: cache-ehcache and 18 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 02:52:42 -0400 (Wed, 24 Jun 2009)
New Revision: 16942
Modified:
core/branches/Branch_3_3/cache-ehcache/pom.xml
core/branches/Branch_3_3/cache-jbosscache/pom.xml
core/branches/Branch_3_3/cache-jbosscache2/pom.xml
core/branches/Branch_3_3/cache-oscache/pom.xml
core/branches/Branch_3_3/cache-swarmcache/pom.xml
core/branches/Branch_3_3/connection-c3p0/pom.xml
core/branches/Branch_3_3/connection-proxool/pom.xml
core/branches/Branch_3_3/core/pom.xml
core/branches/Branch_3_3/distribution/pom.xml
core/branches/Branch_3_3/documentation/manual/pom.xml
core/branches/Branch_3_3/documentation/pom.xml
core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_3/jmx/pom.xml
core/branches/Branch_3_3/parent/pom.xml
core/branches/Branch_3_3/pom.xml
core/branches/Branch_3_3/testing/pom.xml
core/branches/Branch_3_3/testsuite/pom.xml
core/branches/Branch_3_3/tutorials/eg/pom.xml
core/branches/Branch_3_3/tutorials/pom.xml
core/branches/Branch_3_3/tutorials/web/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: core/branches/Branch_3_3/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/core/pom.xml
===================================================================
--- core/branches/Branch_3_3/core/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/core/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3/parent/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/parent/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -32,7 +32,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
@@ -53,9 +53,9 @@
</licenses>
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
</scm>
<ciManagement>
Modified: core/branches/Branch_3_3/pom.xml
===================================================================
--- core/branches/Branch_3_3/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -70,9 +70,9 @@
from Branch_3_3/hibernate (the artifactId of this aggregator module).
-->
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
</scm>
<build>
Modified: core/branches/Branch_3_3/testing/pom.xml
===================================================================
--- core/branches/Branch_3_3/testing/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/testing/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -31,7 +31,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 06:52:09 UTC (rev 16941)
+++ core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 06:52:42 UTC (rev 16942)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.2.GA</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
15 years, 5 months
Hibernate SVN: r16941 - core/tags.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 02:52:09 -0400 (Wed, 24 Jun 2009)
New Revision: 16941
Added:
core/tags/hibernate-3.3.2.GA/
Log:
[maven-scm] copy for tag hibernate-3.3.2.GA
Copied: core/tags/hibernate-3.3.2.GA (from rev 16940, core/branches/Branch_3_3)
15 years, 5 months
Hibernate SVN: r16940 - in core/branches/Branch_3_3: cache-ehcache and 18 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 02:52:03 -0400 (Wed, 24 Jun 2009)
New Revision: 16940
Modified:
core/branches/Branch_3_3/cache-ehcache/pom.xml
core/branches/Branch_3_3/cache-jbosscache/pom.xml
core/branches/Branch_3_3/cache-jbosscache2/pom.xml
core/branches/Branch_3_3/cache-oscache/pom.xml
core/branches/Branch_3_3/cache-swarmcache/pom.xml
core/branches/Branch_3_3/connection-c3p0/pom.xml
core/branches/Branch_3_3/connection-proxool/pom.xml
core/branches/Branch_3_3/core/pom.xml
core/branches/Branch_3_3/distribution/pom.xml
core/branches/Branch_3_3/documentation/manual/pom.xml
core/branches/Branch_3_3/documentation/pom.xml
core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_3/jmx/pom.xml
core/branches/Branch_3_3/parent/pom.xml
core/branches/Branch_3_3/pom.xml
core/branches/Branch_3_3/testing/pom.xml
core/branches/Branch_3_3/testsuite/pom.xml
core/branches/Branch_3_3/tutorials/eg/pom.xml
core/branches/Branch_3_3/tutorials/pom.xml
core/branches/Branch_3_3/tutorials/web/pom.xml
Log:
[maven-release-plugin] prepare release hibernate-3.3.2.GA
Modified: core/branches/Branch_3_3/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/core/pom.xml
===================================================================
--- core/branches/Branch_3_3/core/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/core/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3/parent/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/parent/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -32,7 +32,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
@@ -53,9 +53,9 @@
</licenses>
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</url>
</scm>
<ciManagement>
Modified: core/branches/Branch_3_3/pom.xml
===================================================================
--- core/branches/Branch_3_3/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -70,9 +70,9 @@
from Branch_3_3/hibernate (the artifactId of this aggregator module).
-->
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2.GA</url>
</scm>
<build>
Modified: core/branches/Branch_3_3/testing/pom.xml
===================================================================
--- core/branches/Branch_3_3/testing/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/testing/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -31,7 +31,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
+++ core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 06:52:03 UTC (rev 16940)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
15 years, 5 months
Hibernate SVN: r16939 - in core/branches/Branch_3_3: cache-ehcache and 18 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 01:07:39 -0400 (Wed, 24 Jun 2009)
New Revision: 16939
Modified:
core/branches/Branch_3_3/cache-ehcache/pom.xml
core/branches/Branch_3_3/cache-jbosscache/pom.xml
core/branches/Branch_3_3/cache-jbosscache2/pom.xml
core/branches/Branch_3_3/cache-oscache/pom.xml
core/branches/Branch_3_3/cache-swarmcache/pom.xml
core/branches/Branch_3_3/connection-c3p0/pom.xml
core/branches/Branch_3_3/connection-proxool/pom.xml
core/branches/Branch_3_3/core/pom.xml
core/branches/Branch_3_3/distribution/pom.xml
core/branches/Branch_3_3/documentation/manual/pom.xml
core/branches/Branch_3_3/documentation/pom.xml
core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_3/jmx/pom.xml
core/branches/Branch_3_3/parent/pom.xml
core/branches/Branch_3_3/pom.xml
core/branches/Branch_3_3/testing/pom.xml
core/branches/Branch_3_3/testsuite/pom.xml
core/branches/Branch_3_3/tutorials/eg/pom.xml
core/branches/Branch_3_3/tutorials/pom.xml
core/branches/Branch_3_3/tutorials/web/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: core/branches/Branch_3_3/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/core/pom.xml
===================================================================
--- core/branches/Branch_3_3/core/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/core/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3/parent/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/parent/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -32,7 +32,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
@@ -53,9 +53,9 @@
</licenses>
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
</scm>
<ciManagement>
Modified: core/branches/Branch_3_3/pom.xml
===================================================================
--- core/branches/Branch_3_3/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -70,9 +70,9 @@
from Branch_3_3/hibernate (the artifactId of this aggregator module).
-->
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
</scm>
<build>
Modified: core/branches/Branch_3_3/testing/pom.xml
===================================================================
--- core/branches/Branch_3_3/testing/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/testing/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -31,7 +31,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 05:06:50 UTC (rev 16938)
+++ core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 05:07:39 UTC (rev 16939)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.2</version>
+ <version>3.3.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
15 years, 5 months
Hibernate SVN: r16938 - core/tags.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 01:06:50 -0400 (Wed, 24 Jun 2009)
New Revision: 16938
Added:
core/tags/hibernate-3.3.2/
Log:
[maven-scm] copy for tag hibernate-3.3.2
Copied: core/tags/hibernate-3.3.2 (from rev 16937, core/branches/Branch_3_3)
15 years, 5 months
Hibernate SVN: r16937 - in core/branches/Branch_3_3: cache-ehcache and 18 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 01:06:25 -0400 (Wed, 24 Jun 2009)
New Revision: 16937
Modified:
core/branches/Branch_3_3/cache-ehcache/pom.xml
core/branches/Branch_3_3/cache-jbosscache/pom.xml
core/branches/Branch_3_3/cache-jbosscache2/pom.xml
core/branches/Branch_3_3/cache-oscache/pom.xml
core/branches/Branch_3_3/cache-swarmcache/pom.xml
core/branches/Branch_3_3/connection-c3p0/pom.xml
core/branches/Branch_3_3/connection-proxool/pom.xml
core/branches/Branch_3_3/core/pom.xml
core/branches/Branch_3_3/distribution/pom.xml
core/branches/Branch_3_3/documentation/manual/pom.xml
core/branches/Branch_3_3/documentation/pom.xml
core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_3/jmx/pom.xml
core/branches/Branch_3_3/parent/pom.xml
core/branches/Branch_3_3/pom.xml
core/branches/Branch_3_3/testing/pom.xml
core/branches/Branch_3_3/testsuite/pom.xml
core/branches/Branch_3_3/tutorials/eg/pom.xml
core/branches/Branch_3_3/tutorials/pom.xml
core/branches/Branch_3_3/tutorials/web/pom.xml
Log:
[maven-release-plugin] prepare release hibernate-3.3.2
Modified: core/branches/Branch_3_3/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/core/pom.xml
===================================================================
--- core/branches/Branch_3_3/core/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/core/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3/parent/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/parent/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -32,7 +32,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
@@ -53,9 +53,9 @@
</licenses>
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</url>
</scm>
<ciManagement>
Modified: core/branches/Branch_3_3/pom.xml
===================================================================
--- core/branches/Branch_3_3/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -70,9 +70,9 @@
from Branch_3_3/hibernate (the artifactId of this aggregator module).
-->
<scm>
- <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</developerConnection>
- <url>https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</developerConnection>
+ <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.2</url>
</scm>
<build>
Modified: core/branches/Branch_3_3/testing/pom.xml
===================================================================
--- core/branches/Branch_3_3/testing/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/testing/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -31,7 +31,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
+++ core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 05:06:25 UTC (rev 16937)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.2-SNAPSHOT</version>
+ <version>3.3.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
15 years, 5 months
Hibernate SVN: r16936 - in core/branches/Branch_3_3: cache-ehcache and 18 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 00:52:50 -0400 (Wed, 24 Jun 2009)
New Revision: 16936
Modified:
core/branches/Branch_3_3/cache-ehcache/pom.xml
core/branches/Branch_3_3/cache-jbosscache/pom.xml
core/branches/Branch_3_3/cache-jbosscache2/pom.xml
core/branches/Branch_3_3/cache-oscache/pom.xml
core/branches/Branch_3_3/cache-swarmcache/pom.xml
core/branches/Branch_3_3/connection-c3p0/pom.xml
core/branches/Branch_3_3/connection-proxool/pom.xml
core/branches/Branch_3_3/core/pom.xml
core/branches/Branch_3_3/distribution/pom.xml
core/branches/Branch_3_3/documentation/manual/pom.xml
core/branches/Branch_3_3/documentation/pom.xml
core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_3/jmx/pom.xml
core/branches/Branch_3_3/parent/pom.xml
core/branches/Branch_3_3/pom.xml
core/branches/Branch_3_3/testing/pom.xml
core/branches/Branch_3_3/testsuite/pom.xml
core/branches/Branch_3_3/tutorials/eg/pom.xml
core/branches/Branch_3_3/tutorials/pom.xml
core/branches/Branch_3_3/tutorials/web/pom.xml
Log:
HHH-3987 - prep 3.3.2 release
Modified: core/branches/Branch_3_3/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/cache-ehcache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/cache-jbosscache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/cache-jbosscache2/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/cache-oscache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/cache-swarmcache/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/connection-c3p0/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/connection-proxool/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/core/pom.xml
===================================================================
--- core/branches/Branch_3_3/core/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/core/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/distribution/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/documentation/manual/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/documentation/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/hibernate-maven-plugin/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/jmx/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3/parent/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/parent/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -32,7 +32,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/branches/Branch_3_3/pom.xml
===================================================================
--- core/branches/Branch_3_3/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/testing/pom.xml
===================================================================
--- core/branches/Branch_3_3/testing/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/testing/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/testsuite/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/tutorials/eg/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/tutorials/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -31,7 +31,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_3/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 04:46:11 UTC (rev 16935)
+++ core/branches/Branch_3_3/tutorials/web/pom.xml 2009-06-24 04:52:50 UTC (rev 16936)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
15 years, 5 months
Hibernate SVN: r16935 - core/tags.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2009-06-24 00:46:11 -0400 (Wed, 24 Jun 2009)
New Revision: 16935
Removed:
core/tags/hibernate-3.3.2/
Log:
bah, somehow the tag content got mussed
15 years, 5 months