- <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">
-
- <parent>
- <groupId>com.vladmihalcea</groupId>
- <artifactId>hibernate-types-parent</artifactId>
- <version>2.14.1</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>hibernate-types-55</artifactId>
- <version>2.14.1</version>
- <packaging>jar</packaging>
-
- <name>hibernate-types-55</name>
- <description>Hibernate ORM 5.5 extra Types</description>
-
- <dependencies>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>${hibernate.version}</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
-
- <dependency>
- <groupId>com.fasterxml.jackson.module</groupId>
- <artifactId>jackson-module-jaxb-annotations</artifactId>
- <version>${jackson.version}</version>
- </dependency>
-
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guava.version}</version>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
-
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- <version>${hibernate.version}</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgresql.version}</version>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
-
- </dependencies>
-
- <properties>
- <jdk.version>8</jdk.version>
-
- <hibernate.version>5.5.0.Final</hibernate.version>
- <postgresql.version>42.3.3</postgresql.version>
-
- <mysql.version>8.0.28</mysql.version>
- <jackson.version>2.12.6.1</jackson.version>
- <guava.version>29.0-jre</guava.version>
-
- </properties>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>${maven-jar-plugin.version}</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Automatic-Module-Name>com.vladmihalcea.hibernate.type</Automatic-Module-Name>
- </manifestEntries>
- </archive>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- </project>
|