[hibernate-commits] Hibernate SVN: r16445 - beanvalidation/trunk/validation-tck/impl.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Apr 27 05:38:50 EDT 2009


Author: hardy.ferentschik
Date: 2009-04-27 05:38:50 -0400 (Mon, 27 Apr 2009)
New Revision: 16445

Removed:
   beanvalidation/trunk/validation-tck/impl/pom.xml
   beanvalidation/trunk/validation-tck/impl/src/
Log:
restructuring the tck project structure - for now we don't need the split between api/impl

Deleted: beanvalidation/trunk/validation-tck/impl/pom.xml
===================================================================
--- beanvalidation/trunk/validation-tck/impl/pom.xml	2009-04-27 09:35:20 UTC (rev 16444)
+++ beanvalidation/trunk/validation-tck/impl/pom.xml	2009-04-27 09:38:50 UTC (rev 16445)
@@ -1,219 +0,0 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <parent>
-        <artifactId>jsr-303-tck-parent</artifactId>
-        <groupId>org.hibernate.jsr303.tck</groupId>
-        <version>1.0.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>jsr303-tck-impl</artifactId>
-    <name>JSR-303 TCK tests and harness</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>javax.validation</groupId>
-            <artifactId>validation-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.test-harness</groupId>
-            <artifactId>jboss-test-harness</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.testng</groupId>
-            <artifactId>testng</artifactId>
-            <classifier>jdk15</classifier>
-        </dependency>
-        <dependency>
-            <groupId>org.hibernate</groupId>
-            <artifactId>tck-utils-api</artifactId>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <defaultGoal>install</defaultGoal>
-        <plugins>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>build-helper-maven-plugin</artifactId>
-                <version>1.2</version>
-                <executions>
-                    <execution>
-                        <id>attach-artifacts</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>attach-artifact</goal>
-                        </goals>
-                        <configuration>
-                            <artifacts>
-                                <artifact>
-                                    <file>${basedir}/src/main/resources/tck-tests.xml</file>
-                                    <type>xml</type>
-                                    <classifier>suite</classifier>
-                                </artifact>
-                                <artifact>
-                                    <file>${basedir}/src/main/resources/tck-audit.xml</file>
-                                    <type>xml</type>
-                                    <classifier>audit</classifier>
-                                </artifact>
-                            </artifacts>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>copy-in-container-dependencies</id>
-                        <phase>compile</phase>
-                        <goals>
-                            <goal>copy</goal>
-                        </goals>
-                        <configuration>
-                            <outputDirectory>${project.build.outputDirectory}/lib</outputDirectory>
-                            <stripVersion>true</stripVersion>
-                            <artifactItems>
-                                <artifactItem>
-                                    <groupId>org.jboss.test-harness</groupId>
-                                    <artifactId>jboss-test-harness</artifactId>
-                                    <overWrite>true</overWrite>
-                                </artifactItem>
-                            </artifactItems>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
-    <profiles>
-        <profile>
-            <id>tck-audit</id>
-            <activation>
-                <property>
-                    <name>tck-audit</name>
-                </property>
-            </activation>
-            <dependencies>
-                <dependency>
-                    <groupId>org.hibernate</groupId>
-                    <artifactId>tck-utils-impl</artifactId>
-                </dependency>
-            </dependencies>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-compiler-plugin</artifactId>
-                        <configuration>
-                            <source>1.5</source>
-                            <target>1.5</target>
-                            <compilerArgument>-AauditXml=${basedir}/src/main/resources/tck-audit.xml</compilerArgument>
-                        </configuration>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-enforcer-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>enforce-versions</id>
-                                <goals>
-                                    <goal>enforce</goal>
-                                </goals>
-                                <configuration>
-                                    <rules>
-                                        <requireJavaVersion>
-                                            <version>1.6</version>
-                                        </requireJavaVersion>
-                                    </rules>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>build-helper-maven-plugin</artifactId>
-                        <version>1.2</version>
-                        <executions>
-                            <execution>
-                                <id>attach-artifacts</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>attach-artifact</goal>
-                                </goals>
-                                <configuration>
-                                    <artifacts>
-                                        <artifact>
-                                            <file>${basedir}/src/main/resources/tck-tests.xml</file>
-                                            <type>xml</type>
-                                            <classifier>suite</classifier>
-                                        </artifact>
-                                        <artifact>
-                                            <file>${basedir}/src/main/resources/tck-audit.xml</file>
-                                            <type>xml</type>
-                                            <classifier>audit</classifier>
-                                        </artifact>
-                                        <artifact>
-                                            <file>../target/coverage.html</file>
-                                            <type>html</type>
-                                            <classifier>coverage</classifier>
-                                        </artifact>
-                                    </artifacts>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-                <defaultGoal>compile</defaultGoal>
-            </build>
-        </profile>
-
-        <profile>
-            <id>write-artifacts-to-disk</id>
-            <activation>
-                <property>
-                    <name>dumpArtifacts</name>
-                </property>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>exec-maven-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>generate-jsr-303-artifacts</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>java</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                        <configuration>
-                            <classpathScope>test</classpathScope>
-                            <mainClass>org.jboss.testharness.api.TCK</mainClass>
-                            <systemProperties>
-                                <systemProperty>
-                                    <key>dumpArtifacts</key>
-                                    <value>true</value>
-                                </systemProperty>
-                                <systemProperty>
-                                    <key>org.jboss.testharness.outputDirectory</key>
-                                    <value>target/jsr303-artifacts</value>
-                                </systemProperty>
-                                <systemProperty>
-                                    <key>org.jboss.testharness.libraryDirectory</key>
-                                    <value>target/jsr303-artifacts/dependencies</value>
-                                </systemProperty>
-                            </systemProperties>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-</project>




More information about the hibernate-commits mailing list