usertype.core-hibernate36
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.core-hibernate36</artifactId> <version>3.2.0.GA</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010, 2011 Christopher Pheby 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/maven-v4_0_0.xsd"> <parent> <groupId>org.jadira.framework</groupId> <artifactId>jadira.parent</artifactId> <version>3.2.0.GA</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.core-hibernate36</artifactId> <packaging>jar</packaging> <name>Jadira Usertype Core (for Joda Time, Joda Money, Libphonenum and JDK Types with Hibernate)</name> <description>Classes utilising Joda Time, Joda Money, Libphonenum and JDK Types that add Hibernate support</description> <dependencyManagement> <dependencies> <dependency> <groupId>org.jadira.framework</groupId> <artifactId>jadira.depmgmt</artifactId> <type>pom</type> <scope>import</scope> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <optional>true</optional> <version>3.6.10.Final</version><!--$NO-MVN-MAN-VER$--> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>3.6.10.Final</version><!--$NO-MVN-MAN-VER$--> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.joda</groupId> <artifactId>joda-money</artifactId> <optional>true</optional> <version>0.7</version><!--$NO-MVN-MAN-VER$--> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.2.147</version><!--$NO-MVN-MAN-VER$--> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time-hibernate</artifactId> </dependency> <dependency> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.spi-hibernate36</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jadira.usertype</groupId> <artifactId>usertype.spi-hibernate36</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <!-- Uncomment for MySQL <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.20</version> <scope>test</scope> </dependency> --> <!-- Uncomment for Oracle <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.3</version> <scope>test</scope> </dependency> --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <version>1.0</version> <executions> <execution> <phase>validate</phase> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>5.0</version> <vendor>sun</vendor> </jdk> </toolchains> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <verbose>true</verbose> <fork>true</fork> <source>1.5</source> <target>1.5</target> <compilerArgument>-g</compilerArgument> <encoding>${project.build.sourceEncoding}</encoding> <charset>${project.build.sourceEncoding}</charset> <debug>true</debug> <optimize>true</optimize> <showDeprecations>true</showDeprecations> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> <configuration> <forkCount>1</forkCount> <reuseForks>true</reuseForks> <includes> <include>**/TestCoreJavaSuite.java</include> <include>**/TestCountrySuite.java</include> <include>**/TestJodaTimeSuite.java</include> <include>**/TestLegacyJdkSuite.java</include> <include>**/TestJodaMoneySuite.java</include> <include>**/TestPhoneNumberSuite.java</include> </includes> <systemPropertyVariables> <user.timezone>UTC</user.timezone> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>