You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
3.4KB

  1. <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">
  2. <parent>
  3. <groupId>com.vladmihalcea</groupId>
  4. <artifactId>hibernate-types-parent</artifactId>
  5. <version>2.14.1</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>hibernate-types-55</artifactId>
  9. <version>2.14.1</version>
  10. <packaging>jar</packaging>
  11. <name>hibernate-types-55</name>
  12. <description>Hibernate ORM 5.5 extra Types</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.hibernate</groupId>
  16. <artifactId>hibernate-core</artifactId>
  17. <version>${hibernate.version}</version>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.fasterxml.jackson.core</groupId>
  22. <artifactId>jackson-databind</artifactId>
  23. <version>${jackson.version}</version>
  24. <scope>provided</scope>
  25. <optional>true</optional>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fasterxml.jackson.module</groupId>
  29. <artifactId>jackson-module-jaxb-annotations</artifactId>
  30. <version>${jackson.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.guava</groupId>
  34. <artifactId>guava</artifactId>
  35. <version>${guava.version}</version>
  36. <scope>provided</scope>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hibernate</groupId>
  41. <artifactId>hibernate-ehcache</artifactId>
  42. <version>${hibernate.version}</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.postgresql</groupId>
  47. <artifactId>postgresql</artifactId>
  48. <version>${postgresql.version}</version>
  49. <scope>provided</scope>
  50. <optional>true</optional>
  51. </dependency>
  52. </dependencies>
  53. <properties>
  54. <jdk.version>8</jdk.version>
  55. <hibernate.version>5.5.0.Final</hibernate.version>
  56. <postgresql.version>42.3.3</postgresql.version>
  57. <mysql.version>8.0.28</mysql.version>
  58. <jackson.version>2.11.0</jackson.version>
  59. <guava.version>29.0-jre</guava.version>
  60. </properties>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-jar-plugin</artifactId>
  66. <version>${maven-jar-plugin.version}</version>
  67. <configuration>
  68. <archive>
  69. <manifestEntries>
  70. <Automatic-Module-Name>com.vladmihalcea.hibernate.type</Automatic-Module-Name>
  71. </manifestEntries>
  72. </archive>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <goal>test-jar</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>