2016-01-03 13:45:43 -05:00
|
|
|
<?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>
|
|
|
|
|
2016-03-06 04:49:59 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2016-01-03 13:45:43 -05:00
|
|
|
<artifactId>querydsl</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>querydsl</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-07-05 15:44:00 -04:00
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<spring.version>4.3.1.RELEASE</spring.version>
|
|
|
|
<hibernate.version>5.2.1.Final</hibernate.version>
|
|
|
|
<querydsl.version>4.1.3</querydsl.version>
|
|
|
|
<slf4j.version>1.7.21</slf4j.version>
|
2016-01-03 13:45:43 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- QueryDSL -->
|
|
|
|
|
|
|
|
<dependency>
|
2016-07-05 15:44:00 -04:00
|
|
|
<groupId>com.querydsl</groupId>
|
2016-01-03 13:45:43 -05:00
|
|
|
<artifactId>querydsl-jpa</artifactId>
|
|
|
|
<version>${querydsl.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2016-07-05 15:44:00 -04:00
|
|
|
<groupId>com.querydsl</groupId>
|
2016-01-03 13:45:43 -05:00
|
|
|
<artifactId>querydsl-apt</artifactId>
|
|
|
|
<version>${querydsl.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- JPA Persistence Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
<version>${hibernate.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.javax.persistence</groupId>
|
2016-07-05 15:44:00 -04:00
|
|
|
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
2016-01-03 13:45:43 -05:00
|
|
|
<version>1.0.0.Final</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-dbcp</groupId>
|
|
|
|
<artifactId>commons-dbcp</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
2016-07-05 15:44:00 -04:00
|
|
|
<version>1.6</version>
|
2016-01-03 13:45:43 -05:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- HSQLDB Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
2016-07-05 15:44:00 -04:00
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>2.3.4</version>
|
2016-01-03 13:45:43 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Spring Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
2016-07-05 15:44:00 -04:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.1.7</version>
|
2016-01-03 13:45:43 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Compile src folder without annotation processing -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-07-05 15:44:00 -04:00
|
|
|
<version>3.5.1</version>
|
2016-01-03 13:45:43 -05:00
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<compilerArgument>-proc:none</compilerArgument>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- QueryDSL plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.mysema.maven</groupId>
|
2016-07-05 15:44:00 -04:00
|
|
|
<artifactId>apt-maven-plugin</artifactId>
|
|
|
|
<version>1.1.3</version>
|
2016-01-03 13:45:43 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>process</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2016-07-05 15:44:00 -04:00
|
|
|
<outputDirectory>target/generated-sources/java</outputDirectory>
|
|
|
|
<processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
|
2016-01-03 13:45:43 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-03-06 05:10:06 -05:00
|
|
|
|
2016-01-03 13:45:43 -05:00
|
|
|
</project>
|