57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.loafle</groupId>
|
|
<artifactId>maven_parent_jar</artifactId>
|
|
<version>1.0.0-RELEASE</version>
|
|
</parent>
|
|
|
|
<groupId>com.loafle.overflow</groupId>
|
|
<artifactId>commons-java</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>com.loafle.overflow.commons-java</name>
|
|
|
|
<properties>
|
|
<gson.version>2.8.2</gson.version>
|
|
<spring.version>4.3.9.RELEASE</spring.version>
|
|
<spring-data-commons-core.version>1.4.1.RELEASE</spring-data-commons-core.version>
|
|
<hibernate.version>5.2.10.Final</hibernate.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons-core -->
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-commons-core</artifactId>
|
|
<version>${spring-data-commons-core.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
<version>${hibernate.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-core</artifactId>
|
|
<version>${hibernate.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
</build>
|
|
</project> |