gwt-validation-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.gwt-validation</groupId>
<artifactId>gwt-validation-parent</artifactId>
<version>2.1</version>
</dependency><!--
GWT Validation Framework - A JSR-303 validation framework for GWT
(c) 2008 gwt-validation contributors (http://code.google.com/p/gwt-validation/)
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.
-->
<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/xsd/maven-4.0.0.xsd">
<!-- updated model -->
<modelVersion>4.0.0</modelVersion>
<!-- project info -->
<groupId>com.googlecode.gwt-validation</groupId>
<artifactId>gwt-validation-parent</artifactId>
<version>2.1</version>
<name>gwt-validation-parent</name>
<description>gwt validation framework based on JSR-303</description>
<url>http://code.google.com/p/gwt-validation/</url>
<!-- pom packaging -->
<packaging>pom</packaging>
<!-- children modules -->
<modules>
<module>gwt-validation-core</module>
<!--
<module>gwt-validation-tck</module>
-->
</modules>
<!-- Parent for Maven Central -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<properties>
<!-- project level properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- dependency versions -->
<gwt.version>2.4.0</gwt.version>
<hibernate.version>4.2.0.Final</hibernate.version>
<jsr303.tck.version>1.0.6.GA</jsr303.tck.version>
<slf4jVersion>1.6.1</slf4jVersion>
<!-- exclude emulated paths from sonar -->
<sonar.exclusions>**/emul/**</sonar.exclusions>
</properties>
<licenses>
<license>
<name>Apache License v2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- google code scm -->
<scm>
<url>http://code.google.com/p/gwt-validation/source/browse/#svn%2Ftrunk/tags/gwt-validation-parent-2.1</url>
<connection>scm:svn:http://gwt-validation.googlecode.com/svn/tags/gwt-validation-parent-2.1</connection>
<developerConnection>scm:svn:https://gwt-validation.googlecode.com/svn/tags/gwt-validation-parent-2.1</developerConnection>
</scm>
<developers>
<developer>
<id>chris.ruffalo</id>
<name>Chris Ruffalo</name>
<email>chris.ruffalo@gmail.com</email>
</developer>
</developers>
<contributors>
<contributor>
<name>flugendufel</name>
</contributor>
<contributor>
<name>Niels aka 'nsoeffers'</name>
</contributor>
<contributor>
<name>rodrigue.bouleau</name>
</contributor>
<contributor>
<name>dfuerniss</name>
</contributor>
</contributors>
<dependencyManagement>
<dependencies>
<!-- hibernate validator -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
<version>${hibernate.version}</version>
</dependency>
<!-- jsr-303 api -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
</dependency>
<!-- joda time -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>1.6</version>
</dependency>
<!-- xml binding -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.1.12</version>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<!-- jtype -->
<dependency>
<groupId>com.googlecode.jtype</groupId>
<artifactId>jtype</artifactId>
<version>0.1.1</version>
</dependency>
<!-- hibernate persistence provider -->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.6.0.Final</version>
</dependency>
<!-- testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.14.2</version>
</dependency>
<!-- easymock -->
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.0</version>
</dependency>
<!-- database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.2.124</version>
</dependency>
<!-- tck kit -->
<dependency>
<groupId>org.hibernate.jsr303.tck</groupId>
<artifactId>jsr303-tck</artifactId>
<version>${jsr303.tck.version}</version>
</dependency>
<!-- jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.5.2</version>
</dependency>
<!-- container for tck -->
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-managed</artifactId>
<version>7.0.0.Beta2</version>
</dependency>
<dependency>
<groupId>org.jboss.jbossas.as7-cdi-tck</groupId>
<artifactId>jbossas-container</artifactId>
<version>1.0.0.Alpha1</version>
</dependency>
<!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<!-- guava for reflections -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>r09</version>
</dependency>
<!-- gwt -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
</dependency>
<!-- reflections for class scanning -->
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.5</version>
</dependency>
<!-- freemarker for class templating -->
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.18</version>
</dependency>
<!-- lock gwt-validation versions -->
<dependency>
<groupId>com.googlecode.gwt-validation</groupId>
<artifactId>gwt-validation</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.gwt-validation</groupId>
<artifactId>gwt-validation</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>gpg-sign</id>
<build>
<plugins>
<!-- gpg sign artifacts (for maven central) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>