145 lines
4.8 KiB
XML
145 lines
4.8 KiB
XML
<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>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>spring-jpa-jndi</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
<packaging>war</packaging>
|
|
|
|
<name>spring-jpa-jndi</name>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring -->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-orm</artifactId>
|
|
<version>${org.springframework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${org.springframework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-webmvc</artifactId>
|
|
<version>${org.springframework.version}</version>
|
|
</dependency>
|
|
|
|
<!-- web -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
<version>${javax.servlet.jstl.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${javax.servlet.servlet-api.version}</version>
|
|
</dependency>
|
|
|
|
<!-- persistence -->
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
<version>${hibernate.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xml-apis</groupId>
|
|
<artifactId>xml-apis</artifactId>
|
|
<version>1.4.01</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>${javassist.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
<version>${spring-data-jpa.version}</version>
|
|
</dependency>
|
|
|
|
<!-- validation -->
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<version>${hibernate-validator.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>javax.el-api</artifactId>
|
|
<version>2.2.5</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>spring-jpa-jndi</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>${maven-war-plugin.version}</version>
|
|
<configuration>
|
|
<warSourceDirectory>src/main/webapp</warSourceDirectory>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<properties>
|
|
<!-- Spring -->
|
|
<org.springframework.version>4.3.2.RELEASE</org.springframework.version>
|
|
<javassist.version>3.20.0-GA</javassist.version>
|
|
|
|
<!-- web -->
|
|
<javax.servlet.jstl.version>1.2</javax.servlet.jstl.version>
|
|
<javax.servlet.servlet-api.version>2.5</javax.servlet.servlet-api.version>
|
|
|
|
<!-- persistence -->
|
|
<hibernate.version>4.3.11.Final</hibernate.version>
|
|
<spring-data-jpa.version>1.8.2.RELEASE</spring-data-jpa.version>
|
|
<h2.version>1.4.192</h2.version>
|
|
|
|
<!-- logging -->
|
|
<org.slf4j.version>1.7.13</org.slf4j.version>
|
|
<logback.version>1.1.3</logback.version>
|
|
|
|
<!-- various -->
|
|
<hibernate-validator.version>5.2.2.Final</hibernate-validator.version>
|
|
|
|
<!-- maven plugins -->
|
|
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
|
|
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
|
|
<maven-war-plugin.version>2.4</maven-war-plugin.version>
|
|
<!-- <maven-war-plugin.version>2.6</maven-war-plugin.version> -->
|
|
|
|
</properties>
|
|
|
|
</project> |