Hibernate SVN: r15952 - validator/trunk/hibernate-validator.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-02-11 11:36:51 -0500 (Wed, 11 Feb 2009)
New Revision: 15952
Modified:
validator/trunk/hibernate-validator/readme.txt
Log:
Fixed some text
Modified: validator/trunk/hibernate-validator/readme.txt
===================================================================
--- validator/trunk/hibernate-validator/readme.txt 2009-02-11 16:04:20 UTC (rev 15951)
+++ validator/trunk/hibernate-validator/readme.txt 2009-02-11 16:36:51 UTC (rev 15952)
@@ -20,7 +20,7 @@
-------------
The documentation available as of the date of this release is included in
- HTML format in the dist/docs/ directory.
+ HTML and PDf format in the dist/docs directory.
Release Notes
-------------
16 years, 10 months
Hibernate SVN: r15951 - in validator/trunk/tck-utils: api and 1 other directories.
by hibernate-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2009-02-11 11:04:20 -0500 (Wed, 11 Feb 2009)
New Revision: 15951
Added:
validator/trunk/tck-utils/pom.xml
Modified:
validator/trunk/tck-utils/api/
validator/trunk/tck-utils/api/pom.xml
validator/trunk/tck-utils/impl/
validator/trunk/tck-utils/impl/pom.xml
Log:
project structure
Property changes on: validator/trunk/tck-utils/api
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
Modified: validator/trunk/tck-utils/api/pom.xml
===================================================================
--- validator/trunk/tck-utils/api/pom.xml 2009-02-11 16:01:28 UTC (rev 15950)
+++ validator/trunk/tck-utils/api/pom.xml 2009-02-11 16:04:20 UTC (rev 15951)
@@ -6,78 +6,16 @@
<groupId>org.hibernate</groupId>
<artifactId>tck-utils-api</artifactId>
- <version>0.9-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>TCK Test Coverage Utils</name>
+ <name>TCK Test Coverage Utils Implementation</name>
- <description>
- Utility classes for TCK Test Coverage creation.
- </description>
-
- <issueManagement>
- <system>JIRA</system>
- <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
- </issueManagement>
-
- <inceptionYear>2009</inceptionYear>
-
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>license.txt</url>
- </license>
- </licenses>
-
- <modules>
- <module>impl</module>
- <module>api<module>
- </modules>
-
- <scm>
- <connection>scm:https://svn.jboss.org/repos/hibernate/validator/trunk/tck-utils-api</connection>
- </scm>
-
- <developers>
- <developer>
- <name>Hardy Ferentschik</name>
- <email>hardy.ferentschik(a)redhat.com</email>
- <organization>JBoss, a division of Red Hat</organization>
- <url>http://in.relation.to/Bloggers/Hardy</url>
- </developer>
- </developers>
-
- <repositories>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- </repository>
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <id>repository.jboss.org</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- </pluginRepository>
- </pluginRepositories>
-
- <distributionManagement>
- <snapshotRepository>
- <id>snapshots.jboss.org</id>
- <name>JBoss Snapshot Repository</name>
- <url>dav:https://snapshots.jboss.org/maven2</url>
- </snapshotRepository>
- </distributionManagement>
+ <parent>
+ <artifactId>tck-utils</artifactId>
+ <groupId>org.hibernate</groupId>
+ <version>0.9-SNAPSHOT</version>
+ </parent>
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
+ <build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -88,83 +26,6 @@
</configuration>
</plugin>
</plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Implementation-Title>${pom.artifactId}</Implementation-Title>
- <Implementation-Version>${pom.version}</Implementation-Version>
- <Implementation-Vendor>${pom.groupId}</Implementation-Vendor>
- <Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
- <Implementation-URL>${pom.url}</Implementation-URL>
- <Specification-Title>TCK Utils API</Specification-Title>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <forkMode>always</forkMode>
- <redirectTestOutputToFile>true</redirectTestOutputToFile>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
</build>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.0.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jxr-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clover-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>changes-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
</project>
Property changes on: validator/trunk/tck-utils/impl
___________________________________________________________________
Name: svn:ignore
+ .settings
target
.project
.classpath
Modified: validator/trunk/tck-utils/impl/pom.xml
===================================================================
--- validator/trunk/tck-utils/impl/pom.xml 2009-02-11 16:01:28 UTC (rev 15950)
+++ validator/trunk/tck-utils/impl/pom.xml 2009-02-11 16:04:20 UTC (rev 15951)
@@ -6,65 +6,15 @@
<groupId>org.hibernate</groupId>
<artifactId>tck-utils-impl</artifactId>
- <version>0.9-SNAPSHOT</version>
<packaging>jar</packaging>
<name>TCK Test Coverage Utils API</name>
+
+ <parent>
+ <artifactId>tck-utils</artifactId>
+ <groupId>org.hibernate</groupId>
+ <version>0.9-SNAPSHOT</version>
+ </parent>
- <description>
- Utility classes for TCK creation.
- </description>
-
- <issueManagement>
- <system>JIRA</system>
- <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
- </issueManagement>
-
- <inceptionYear>2009</inceptionYear>
-
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>license.txt</url>
- </license>
- </licenses>
-
- <scm>
- <connection>scm:https://svn.jboss.org/repos/hibernate/validator/trunk/tck-utils</connection>
- </scm>
-
- <developers>
- <developer>
- <name>Hardy Ferentschik</name>
- <email>hardy.ferentschik(a)redhat.com</email>
- <organization>JBoss, a division of Red Hat</organization>
- <url>http://in.relation.to/Bloggers/Hardy</url>
- </developer>
- </developers>
-
- <repositories>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- </repository>
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <id>repository.jboss.org</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- </pluginRepository>
- </pluginRepositories>
-
- <distributionManagement>
- <snapshotRepository>
- <id>snapshots.jboss.org</id>
- <name>JBoss Snapshot Repository</name>
- <url>dav:https://snapshots.jboss.org/maven2</url>
- </snapshotRepository>
- </distributionManagement>
-
<dependencies>
<dependency>
<groupId>junit</groupId>
@@ -78,102 +28,23 @@
<version>${project.version}</version>
</dependency>
</dependencies>
-
+
<build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Implementation-Title>${pom.artifactId}</Implementation-Title>
- <Implementation-Version>${pom.version}</Implementation-Version>
- <Implementation-Vendor>${pom.groupId}</Implementation-Vendor>
- <Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
- <Implementation-URL>${pom.url}</Implementation-URL>
- <Specification-Title>TCK Utils</Specification-Title>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <compilerArgument>-proc:none</compilerArgument>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <forkMode>always</forkMode>
- <redirectTestOutputToFile>true</redirectTestOutputToFile>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
-
- <reporting>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.0.1</version>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ <compilerArgument>-proc:none</compilerArgument>
+ </configuration>
</plugin>
<plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jxr-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clover-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>changes-maven-plugin</artifactId>
- </plugin>
</plugins>
- </reporting>
+ </build>
+
</project>
Added: validator/trunk/tck-utils/pom.xml
===================================================================
--- validator/trunk/tck-utils/pom.xml (rev 0)
+++ validator/trunk/tck-utils/pom.xml 2009-02-11 16:04:20 UTC (rev 15951)
@@ -0,0 +1,160 @@
+<?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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.hibernate</groupId>
+ <artifactId>tck-utils</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>TCK Test Coverage Utils</name>
+
+ <description>
+ Utility classes for TCK Test Coverage creation.
+ </description>
+
+ <issueManagement>
+ <system>JIRA</system>
+ <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
+ </issueManagement>
+
+ <modules>
+ <module>impl</module>
+ <module>api</module>
+ </modules>
+
+ <inceptionYear>2009</inceptionYear>
+
+ <licenses>
+ <license>
+ <name>Apache License, Version 2.0</name>
+ <url>license.txt</url>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>scm:https://svn.jboss.org/repos/hibernate/validator/trunk/tck-utils</connection>
+ </scm>
+
+ <developers>
+ <developer>
+ <name>Hardy Ferentschik</name>
+ <email>hardy.ferentschik(a)redhat.com</email>
+ <organization>JBoss, a division of Red Hat</organization>
+ <url>http://in.relation.to/Bloggers/Hardy</url>
+ </developer>
+ </developers>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Implementation-Title>${pom.artifactId}</Implementation-Title>
+ <Implementation-Version>${pom.version}</Implementation-Version>
+ <Implementation-Vendor>${pom.groupId}</Implementation-Vendor>
+ <Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
+ <Implementation-URL>${pom.url}</Implementation-URL>
+ <Specification-Title>TCK Utils API</Specification-Title>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>always</forkMode>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.0.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-clover-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>changes-maven-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>
16 years, 10 months
Hibernate SVN: r15950 - entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences.
by hibernate-commits@lists.jboss.org
Author: jcosta(a)redhat.com
Date: 2009-02-11 11:01:28 -0500 (Wed, 11 Feb 2009)
New Revision: 15950
Modified:
entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java
entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml
entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml
entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml
Log:
JBPAPP-1078 - Fixed the package name in xml files, as well as in the XmlAttributeOverrideTest
Modified: entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java
===================================================================
--- entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java 2009-02-11 16:01:19 UTC (rev 15949)
+++ entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java 2009-02-11 16:01:28 UTC (rev 15950)
@@ -35,7 +35,7 @@
@Override
public String[] getEjb3DD() {
return new String[] {
- "org/hibernate/ejb/test/xml/orm3.xml"
+ "org/hibernate/ejb/test/xml/sequences/orm3.xml"
};
}
}
Modified: entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml
===================================================================
--- entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml 2009-02-11 16:01:19 UTC (rev 15949)
+++ entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml 2009-02-11 16:01:28 UTC (rev 15950)
@@ -13,7 +13,7 @@
<cascade-persist/>
</persistence-unit-defaults>
</persistence-unit-metadata>
- <package>org.hibernate.ejb.test.xml</package>
+ <package>org.hibernate.ejb.test.xml.sequences</package>
<entity class="Light" metadata-complete="true" access="FIELD">
<attributes>
<id name="name">
Modified: entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml
===================================================================
--- entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml 2009-02-11 16:01:19 UTC (rev 15949)
+++ entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml 2009-02-11 16:01:28 UTC (rev 15950)
@@ -5,7 +5,7 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm orm_1_0.xsd"
version="1.0"
>
- <entity class="org.hibernate.ejb.test.xml.Lighter" name="ALighter" access="FIELD" metadata-complete="true">
+ <entity class="org.hibernate.ejb.test.xml.sequences.Lighter" name="ALighter" access="FIELD" metadata-complete="true">
<attributes>
<id name="name">
<column name="fld_id"/>
Modified: entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml
===================================================================
--- entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml 2009-02-11 16:01:19 UTC (rev 15949)
+++ entitymanager/branches/v3_2_1_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml 2009-02-11 16:01:28 UTC (rev 15950)
@@ -5,7 +5,7 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"
version="1.0">
- <entity class="org.hibernate.ejb.test.xml.Employee" metadata-complete="false" access="FIELD">
+ <entity class="org.hibernate.ejb.test.xml.sequences.Employee" metadata-complete="false" access="FIELD">
<attributes>
<id name="id"/>
<basic name="name"/>
@@ -43,7 +43,7 @@
</attributes>
</entity>
- <embeddable class="org.hibernate.ejb.test.xml.Address">
+ <embeddable class="org.hibernate.ejb.test.xml.sequences.Address">
<attributes>
<basic name="street"/>
<basic name="city"/>
16 years, 10 months
Hibernate SVN: r15949 - entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences.
by hibernate-commits@lists.jboss.org
Author: jcosta(a)redhat.com
Date: 2009-02-11 11:01:19 -0500 (Wed, 11 Feb 2009)
New Revision: 15949
Modified:
entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java
entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml
entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml
entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml
Log:
JBPAPP-1078 - Fixed the package name in xml files, as well as in the XmlAttributeOverrideTest
Modified: entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java
===================================================================
--- entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java 2009-02-11 15:59:34 UTC (rev 15948)
+++ entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/XmlAttributeOverrideTest.java 2009-02-11 16:01:19 UTC (rev 15949)
@@ -35,7 +35,7 @@
@Override
public String[] getEjb3DD() {
return new String[] {
- "org/hibernate/ejb/test/xml/orm3.xml"
+ "org/hibernate/ejb/test/xml/sequences/orm3.xml"
};
}
}
Modified: entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml
===================================================================
--- entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml 2009-02-11 15:59:34 UTC (rev 15948)
+++ entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm.xml 2009-02-11 16:01:19 UTC (rev 15949)
@@ -13,7 +13,7 @@
<cascade-persist/>
</persistence-unit-defaults>
</persistence-unit-metadata>
- <package>org.hibernate.ejb.test.xml</package>
+ <package>org.hibernate.ejb.test.xml.sequences</package>
<entity class="Light" metadata-complete="true" access="FIELD">
<attributes>
<id name="name">
Modified: entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml
===================================================================
--- entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml 2009-02-11 15:59:34 UTC (rev 15948)
+++ entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm2.xml 2009-02-11 16:01:19 UTC (rev 15949)
@@ -5,7 +5,7 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm orm_1_0.xsd"
version="1.0"
>
- <entity class="org.hibernate.ejb.test.xml.Lighter" name="ALighter" access="FIELD" metadata-complete="true">
+ <entity class="org.hibernate.ejb.test.xml.sequences.Lighter" name="ALighter" access="FIELD" metadata-complete="true">
<attributes>
<id name="name">
<column name="fld_id"/>
Modified: entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml
===================================================================
--- entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml 2009-02-11 15:59:34 UTC (rev 15948)
+++ entitymanager/branches/v3_3_2_GA_CP/src/test/org/hibernate/ejb/test/xml/sequences/orm3.xml 2009-02-11 16:01:19 UTC (rev 15949)
@@ -5,7 +5,7 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"
version="1.0">
- <entity class="org.hibernate.ejb.test.xml.Employee" metadata-complete="false" access="FIELD">
+ <entity class="org.hibernate.ejb.test.xml.sequences.Employee" metadata-complete="false" access="FIELD">
<attributes>
<id name="id"/>
<basic name="name"/>
@@ -43,7 +43,7 @@
</attributes>
</entity>
- <embeddable class="org.hibernate.ejb.test.xml.Address">
+ <embeddable class="org.hibernate.ejb.test.xml.sequences.Address">
<attributes>
<basic name="street"/>
<basic name="city"/>
16 years, 10 months
Hibernate SVN: r15948 - validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validation.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-02-11 10:59:34 -0500 (Wed, 11 Feb 2009)
New Revision: 15948
Modified:
validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validation/ValidationMessages_fr.properties
Log:
completed the french validation messages
Modified: validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validation/ValidationMessages_fr.properties
===================================================================
--- validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validation/ValidationMessages_fr.properties 2009-02-11 15:48:44 UTC (rev 15947)
+++ validator/trunk/hibernate-validator/src/main/resources/org/hibernate/validation/ValidationMessages_fr.properties 2009-02-11 15:59:34 UTC (rev 15948)
@@ -9,3 +9,5 @@
validator.null=doit \u00EAtre nul
validator.past=doit \u00EAtre dans le pass\u00E9
validator.future=doit \u00EAtre dans le futur
+validator.assertTrue=doit \u00EAtre vrai
+validator.assertFalse=doit \u00EAtre faux
16 years, 10 months
Hibernate SVN: r15947 - in validator/trunk/tck-utils: api and 10 other directories.
by hibernate-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2009-02-11 10:48:44 -0500 (Wed, 11 Feb 2009)
New Revision: 15947
Added:
validator/trunk/tck-utils/api/pom.xml
validator/trunk/tck-utils/api/src/
validator/trunk/tck-utils/api/src/main/
validator/trunk/tck-utils/api/src/main/java/
validator/trunk/tck-utils/api/src/main/java/org/
validator/trunk/tck-utils/api/src/main/java/org/hibernate/
validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/
validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/
validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertion.java
validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertions.java
validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecVersion.java
validator/trunk/tck-utils/api/src/main/resources/
validator/trunk/tck-utils/api/src/test/
validator/trunk/tck-utils/api/src/test/java/
validator/trunk/tck-utils/impl/pom.xml
validator/trunk/tck-utils/impl/src/
validator/trunk/tck-utils/impl/src/main/
validator/trunk/tck-utils/impl/src/test/
Removed:
validator/trunk/tck-utils/impl/src/main/
validator/trunk/tck-utils/impl/src/test/
validator/trunk/tck-utils/pom.xml
validator/trunk/tck-utils/src/
Log:
restructure
Added: validator/trunk/tck-utils/api/pom.xml
===================================================================
--- validator/trunk/tck-utils/api/pom.xml (rev 0)
+++ validator/trunk/tck-utils/api/pom.xml 2009-02-11 15:48:44 UTC (rev 15947)
@@ -0,0 +1,170 @@
+<?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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.hibernate</groupId>
+ <artifactId>tck-utils-api</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>TCK Test Coverage Utils</name>
+
+ <description>
+ Utility classes for TCK Test Coverage creation.
+ </description>
+
+ <issueManagement>
+ <system>JIRA</system>
+ <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
+ </issueManagement>
+
+ <inceptionYear>2009</inceptionYear>
+
+ <licenses>
+ <license>
+ <name>Apache License, Version 2.0</name>
+ <url>license.txt</url>
+ </license>
+ </licenses>
+
+ <modules>
+ <module>impl</module>
+ <module>api<module>
+ </modules>
+
+ <scm>
+ <connection>scm:https://svn.jboss.org/repos/hibernate/validator/trunk/tck-utils-api</connection>
+ </scm>
+
+ <developers>
+ <developer>
+ <name>Hardy Ferentschik</name>
+ <email>hardy.ferentschik(a)redhat.com</email>
+ <organization>JBoss, a division of Red Hat</organization>
+ <url>http://in.relation.to/Bloggers/Hardy</url>
+ </developer>
+ </developers>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Implementation-Title>${pom.artifactId}</Implementation-Title>
+ <Implementation-Version>${pom.version}</Implementation-Version>
+ <Implementation-Vendor>${pom.groupId}</Implementation-Vendor>
+ <Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
+ <Implementation-URL>${pom.url}</Implementation-URL>
+ <Specification-Title>TCK Utils API</Specification-Title>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>always</forkMode>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.0.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-clover-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>changes-maven-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>
Added: validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertion.java
===================================================================
--- validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertion.java (rev 0)
+++ validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertion.java 2009-02-11 15:48:44 UTC (rev 15947)
@@ -0,0 +1,35 @@
+// $Id: SpecAssertion.java 15909 2009-02-06 10:26:41Z hardy.ferentschik $
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+package org.hibernate.tck.annotations;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+
+(a)Target(ElementType.METHOD)
+@Documented
+public @interface SpecAssertion {
+
+ public String section();
+
+ public String id() default "";
+
+ public String note() default "";
+
+}
+
Added: validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertions.java
===================================================================
--- validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertions.java (rev 0)
+++ validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecAssertions.java 2009-02-11 15:48:44 UTC (rev 15947)
@@ -0,0 +1,29 @@
+// $Id: SpecAssertion.java 15705 2008-12-18 16:21:24Z hardy.ferentschik $
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+package org.hibernate.tck.annotations;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+import java.lang.annotation.Annotation;
+
+(a)Target(ElementType.METHOD)
+@Documented
+public @interface SpecAssertions {
+ SpecAssertion[] value();
+}
\ No newline at end of file
Added: validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecVersion.java
===================================================================
--- validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecVersion.java (rev 0)
+++ validator/trunk/tck-utils/api/src/main/java/org/hibernate/tck/annotations/SpecVersion.java 2009-02-11 15:48:44 UTC (rev 15947)
@@ -0,0 +1,30 @@
+// $Id: SpecVersion.java 15705 2008-12-18 16:21:24Z hardy.ferentschik $
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+* http://www.apache.org/licenses/LICENSE-2.0
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+package org.hibernate.tck.annotations;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+
+@Documented
+(a)Target(ElementType.TYPE)
+public @interface SpecVersion {
+
+ String value();
+}
+
Copied: validator/trunk/tck-utils/impl/pom.xml (from rev 15946, validator/trunk/tck-utils/pom.xml)
===================================================================
--- validator/trunk/tck-utils/impl/pom.xml (rev 0)
+++ validator/trunk/tck-utils/impl/pom.xml 2009-02-11 15:48:44 UTC (rev 15947)
@@ -0,0 +1,179 @@
+<?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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.hibernate</groupId>
+ <artifactId>tck-utils-impl</artifactId>
+ <version>0.9-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>TCK Test Coverage Utils API</name>
+
+ <description>
+ Utility classes for TCK creation.
+ </description>
+
+ <issueManagement>
+ <system>JIRA</system>
+ <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
+ </issueManagement>
+
+ <inceptionYear>2009</inceptionYear>
+
+ <licenses>
+ <license>
+ <name>Apache License, Version 2.0</name>
+ <url>license.txt</url>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>scm:https://svn.jboss.org/repos/hibernate/validator/trunk/tck-utils</connection>
+ </scm>
+
+ <developers>
+ <developer>
+ <name>Hardy Ferentschik</name>
+ <email>hardy.ferentschik(a)redhat.com</email>
+ <organization>JBoss, a division of Red Hat</organization>
+ <url>http://in.relation.to/Bloggers/Hardy</url>
+ </developer>
+ </developers>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.4</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>tck-utils-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Implementation-Title>${pom.artifactId}</Implementation-Title>
+ <Implementation-Version>${pom.version}</Implementation-Version>
+ <Implementation-Vendor>${pom.groupId}</Implementation-Vendor>
+ <Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
+ <Implementation-URL>${pom.url}</Implementation-URL>
+ <Specification-Title>TCK Utils</Specification-Title>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <compilerArgument>-proc:none</compilerArgument>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <forkMode>always</forkMode>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.0.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-clover-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>changes-maven-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>
Copied: validator/trunk/tck-utils/impl/src (from rev 15945, validator/trunk/tck-utils/src)
Copied: validator/trunk/tck-utils/impl/src/main (from rev 15946, validator/trunk/tck-utils/src/main)
Copied: validator/trunk/tck-utils/impl/src/test (from rev 15946, validator/trunk/tck-utils/src/test)
Deleted: validator/trunk/tck-utils/pom.xml
===================================================================
--- validator/trunk/tck-utils/pom.xml 2009-02-11 15:43:24 UTC (rev 15946)
+++ validator/trunk/tck-utils/pom.xml 2009-02-11 15:48:44 UTC (rev 15947)
@@ -1,179 +0,0 @@
-<?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">
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.hibernate</groupId>
- <artifactId>tck-utils</artifactId>
- <version>0.9-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>TCK Test Coverage Utils API</name>
-
- <description>
- Utility classes for TCK creation.
- </description>
-
- <issueManagement>
- <system>JIRA</system>
- <url>http://opensource.atlassian.com/projects/hibernate/browse/BVAL</url>
- </issueManagement>
-
- <inceptionYear>2009</inceptionYear>
-
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>license.txt</url>
- </license>
- </licenses>
-
- <scm>
- <connection>scm:https://svn.jboss.org/repos/hibernate/validator/trunk/tck-utils</connection>
- </scm>
-
- <developers>
- <developer>
- <name>Hardy Ferentschik</name>
- <email>hardy.ferentschik(a)redhat.com</email>
- <organization>JBoss, a division of Red Hat</organization>
- <url>http://in.relation.to/Bloggers/Hardy</url>
- </developer>
- </developers>
-
- <repositories>
- <repository>
- <id>repository.jboss.org</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- </repository>
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <id>repository.jboss.org</id>
- <name>JBoss Repository</name>
- <url>http://repository.jboss.org/maven2</url>
- </pluginRepository>
- </pluginRepositories>
-
- <distributionManagement>
- <snapshotRepository>
- <id>snapshots.jboss.org</id>
- <name>JBoss Snapshot Repository</name>
- <url>dav:https://snapshots.jboss.org/maven2</url>
- </snapshotRepository>
- </distributionManagement>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.4</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>tck-utils-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-
- <build>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav</artifactId>
- <version>1.0-beta-2</version>
- </extension>
- </extensions>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Implementation-Title>${pom.artifactId}</Implementation-Title>
- <Implementation-Version>${pom.version}</Implementation-Version>
- <Implementation-Vendor>${pom.groupId}</Implementation-Vendor>
- <Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
- <Implementation-URL>${pom.url}</Implementation-URL>
- <Specification-Title>TCK Utils</Specification-Title>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <compilerArgument>-proc:none</compilerArgument>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <forkMode>always</forkMode>
- <redirectTestOutputToFile>true</redirectTestOutputToFile>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
-
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.0.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jxr-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clover-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>changes-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
-</project>
16 years, 10 months
Hibernate SVN: r15946 - in validator/trunk/tck-utils: src/main/java/org/hibernate/tck and 1 other directories.
by hibernate-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2009-02-11 10:43:24 -0500 (Wed, 11 Feb 2009)
New Revision: 15946
Added:
validator/trunk/tck-utils/api/
validator/trunk/tck-utils/impl/
Removed:
validator/trunk/tck-utils/src/main/java/org/hibernate/tck/annotations/
Modified:
validator/trunk/tck-utils/pom.xml
validator/trunk/tck-utils/src/main/java/org/hibernate/tck/report/CoverageProcessor.java
Log:
fixes, prep for restructure
Modified: validator/trunk/tck-utils/pom.xml
===================================================================
--- validator/trunk/tck-utils/pom.xml 2009-02-11 14:51:20 UTC (rev 15945)
+++ validator/trunk/tck-utils/pom.xml 2009-02-11 15:43:24 UTC (rev 15946)
@@ -8,7 +8,7 @@
<artifactId>tck-utils</artifactId>
<version>0.9-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>TCK Utils</name>
+ <name>TCK Test Coverage Utils API</name>
<description>
Utility classes for TCK creation.
@@ -70,7 +70,13 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
+ <scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>tck-utils-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
<build>
Modified: validator/trunk/tck-utils/src/main/java/org/hibernate/tck/report/CoverageProcessor.java
===================================================================
--- validator/trunk/tck-utils/src/main/java/org/hibernate/tck/report/CoverageProcessor.java 2009-02-11 14:51:20 UTC (rev 15945)
+++ validator/trunk/tck-utils/src/main/java/org/hibernate/tck/report/CoverageProcessor.java 2009-02-11 15:43:24 UTC (rev 15946)
@@ -1,12 +1,7 @@
package org.hibernate.tck.report;
-import org.hibernate.tck.annotations.SpecAssertion;
-import org.hibernate.tck.annotations.SpecAssertions;
+import static javax.lang.model.SourceVersion.RELEASE_6;
-import javax.annotation.processing.*;
-import static javax.lang.model.SourceVersion.RELEASE_6;
-import javax.lang.model.element.*;
-import javax.tools.Diagnostic;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
@@ -16,6 +11,20 @@
import java.util.Map;
import java.util.Set;
+import javax.annotation.processing.AbstractProcessor;
+import javax.annotation.processing.ProcessingEnvironment;
+import javax.annotation.processing.RoundEnvironment;
+import javax.annotation.processing.SupportedAnnotationTypes;
+import javax.annotation.processing.SupportedSourceVersion;
+import javax.lang.model.element.AnnotationMirror;
+import javax.lang.model.element.AnnotationValue;
+import javax.lang.model.element.Element;
+import javax.lang.model.element.ExecutableElement;
+import javax.lang.model.element.TypeElement;
+
+import org.hibernate.tck.annotations.SpecAssertion;
+import org.hibernate.tck.annotations.SpecAssertions;
+
/**
* Annotation processor for generating TCK coverage report
*
@@ -27,8 +36,8 @@
})
@SupportedSourceVersion(RELEASE_6)
public class CoverageProcessor extends AbstractProcessor {
- private static final String OUTDIR_OPTION_FLAG = "-s";
- private static final String AUDITFILE_OPTION_FLAG = "-a";
+ private static final String OUTDIR_OPTION_FLAG = "outputDir";
+ private static final String AUDITFILE_OPTION_KEY = "auditXml";
private static final String REPORT_FILE_NAME = "coverage.html";
private static final String DEFAULT_AUDIT_FILE_NAME = "tck-audit.xml";
@@ -63,21 +72,24 @@
private InputStream getAuditFileInputStream() {
InputStream in;
- String auditFileName = processingEnv.getOptions().get(AUDITFILE_OPTION_FLAG);
+ String auditFileName = processingEnv.getOptions().get(AUDITFILE_OPTION_KEY);
if (auditFileName == null || auditFileName.length() == 0) {
auditFileName = getCurrentWorkingDirectory() + DEFAULT_AUDIT_FILE_NAME;
- processingEnv.getMessager().printMessage(
- Diagnostic.Kind.NOTE,
- "No audit file specified on the command line. Trying default: " + auditFileName
+ System.out.println(
+ "No audit file specified. Trying default: " + auditFileName
);
}
+ else
+ {
+ System.out.println(
+ "Reading spec assertions from audit file: " + auditFileName);
+ }
try {
in = new FileInputStream(auditFileName);
}
catch (IOException ex) {
- processingEnv.getMessager()
- .printMessage(Diagnostic.Kind.WARNING, "Unable to open audit file - " + auditFileName);
- processingEnv.getMessager().printMessage(Diagnostic.Kind.WARNING, "No report generated");
+ System.err.println("Unable to open audit file - " + auditFileName);
+ System.err.println("No report generated");
return null;
}
return in;
@@ -90,11 +102,16 @@
// I would like to get the baseDir as property, but it seems that the maven compiler plugin still has issues - http://jira.codehaus.org/browse/MCOMPILER-75
if (baseDirName == null) {
baseDirName = getCurrentWorkingDirectory() + "target";
- processingEnv.getMessager().printMessage(
- Diagnostic.Kind.NOTE,
- "No output directory specided using " + baseDirName + "instead."
+ System.out.println(
+ "No output directory specided using " + baseDirName + " instead."
);
}
+ else
+ {
+ System.out.println(
+ "Outputting to " + baseDirName
+ );
+ }
baseDir = new File(baseDirName);
baseDir.mkdirs();
16 years, 10 months
Hibernate SVN: r15945 - beanvalidation/tags.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-02-11 09:51:20 -0500 (Wed, 11 Feb 2009)
New Revision: 15945
Added:
beanvalidation/tags/v1_0_Beta3/
Log:
Created tag v1_0_Beta3.
Copied: beanvalidation/tags/v1_0_Beta3 (from rev 15944, beanvalidation/trunk)
16 years, 10 months
Hibernate SVN: r15943 - validator/trunk and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2009-02-11 09:14:25 -0500 (Wed, 11 Feb 2009)
New Revision: 15943
Added:
beanvalidation/trunk/validation-api/
Removed:
validator/trunk/validation-api/
Log:
Moved validator/trunk/validation-api to beanvalidation/trunk/validation-api. The JSR 303 api is really independend from the Hibernate specific implementation.
Copied: beanvalidation/trunk/validation-api (from rev 15942, validator/trunk/validation-api)
16 years, 10 months