2016-02-26 10:43:11 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-03-02 04:00:48 -05:00
|
|
|
<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>jpa-storedprocedure</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2016-03-06 13:27:44 -05:00
|
|
|
<properties>
|
|
|
|
<jee.version>7.0</jee.version>
|
2016-12-11 17:27:31 -05:00
|
|
|
<hibernate.version>5.2.5.Final</hibernate.version>
|
|
|
|
<mysql.version>6.0.5</mysql.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<commons-io.version>2.5</commons-io.version>
|
2016-10-25 07:51:51 -04:00
|
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
2016-03-06 13:27:44 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>JpaStoredProcedure</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!--archive> <manifest> <mainClass>fully.qualified.MainClass</mainClass> </manifest> </archive -->
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-10-25 07:51:51 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-03-06 13:27:44 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2016-03-02 04:00:48 -05:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- core library -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax</groupId>
|
|
|
|
<artifactId>javaee-api</artifactId>
|
|
|
|
<version>${jee.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
<version>${hibernate.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- MySql JDBC -->
|
2016-03-01 18:26:27 -05:00
|
|
|
|
2016-03-02 04:00:48 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2016-12-11 17:27:31 -05:00
|
|
|
<version>${mysql.version}</version>
|
2016-03-02 04:00:48 -05:00
|
|
|
</dependency>
|
2016-03-01 18:26:27 -05:00
|
|
|
|
2016-03-02 04:00:48 -05:00
|
|
|
<!-- Junit Library -->
|
2016-02-26 10:43:11 -05:00
|
|
|
|
2016-03-02 04:00:48 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-12-11 17:27:31 -05:00
|
|
|
<version>${junit.version}</version>
|
2016-03-02 04:00:48 -05:00
|
|
|
</dependency>
|
2016-02-26 10:43:11 -05:00
|
|
|
|
2016-03-02 04:00:48 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2016-12-11 17:27:31 -05:00
|
|
|
<version>${commons-io.version}</version>
|
2016-03-02 04:00:48 -05:00
|
|
|
</dependency>
|
2016-02-26 10:43:11 -05:00
|
|
|
|
2016-03-02 04:00:48 -05:00
|
|
|
</dependencies>
|
2016-02-26 10:43:11 -05:00
|
|
|
|
|
|
|
</project>
|