2016-02-26 10:43:11 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04: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">
|
2016-03-02 04:00:48 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>jpa-storedprocedure</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
2017-05-09 16:37:43 -04:00
|
|
|
|
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>
|
|
|
|
<commons-io.version>2.5</commons-io.version>
|
2017-05-12 14:32:54 -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>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
2017-03-19 15:03:23 -04:00
|
|
|
<archiveBaseDirectory>${project.basedir}</archiveBaseDirectory>
|
2017-05-12 14:32:54 -04:00
|
|
|
<!--archive> <manifest> <mainClass>fully.qualified.MainClass</mainClass>
|
|
|
|
</manifest> </archive -->
|
2016-03-06 13:27:44 -05:00
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
2017-05-12 14:32:54 -04:00
|
|
|
</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
|
|
|
<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>
|