You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
3.8 KiB
144 lines
3.8 KiB
<?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/maven-v4_0_0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-commons-parent</artifactId> |
|
<version>1.3.3.BUILD-SNAPSHOT</version> |
|
<relativePath>../spring-data-commons-parent/pom.xml</relativePath> |
|
</parent> |
|
|
|
<artifactId>spring-data-commons-core</artifactId> |
|
<name>Spring Data Commons Core</name> |
|
|
|
<properties> |
|
<querydsl.version>2.5.0</querydsl.version> |
|
<cdi.version>1.0</cdi.version> |
|
<webbeans.version>1.1.3</webbeans.version> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<!-- Spring --> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
<version>${org.springframework.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
<version>${org.springframework.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<version>${org.springframework.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
<version>2.5</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>jsr250-api</artifactId> |
|
<version>1.0</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<version>1.8.5</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
<version>${org.springframework.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>joda-time</groupId> |
|
<artifactId>joda-time</artifactId> |
|
<version>1.6</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.mysema.querydsl</groupId> |
|
<artifactId>querydsl-core</artifactId> |
|
<version>${querydsl.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.mysema.querydsl</groupId> |
|
<artifactId>querydsl-apt</artifactId> |
|
<version>${querydsl.version}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<!-- EJB Transactions --> |
|
<dependency> |
|
<groupId>javax.ejb</groupId> |
|
<artifactId>ejb-api</artifactId> |
|
<version>3.0</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<!-- CDI --> |
|
<dependency> |
|
<groupId>javax.enterprise</groupId> |
|
<artifactId>cdi-api</artifactId> |
|
<version>${cdi.version}</version> |
|
<scope>provided</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.el</groupId> |
|
<artifactId>el-api</artifactId> |
|
<version>${cdi.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.openwebbeans.test</groupId> |
|
<artifactId>cditest-owb</artifactId> |
|
<version>${webbeans.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.mysema.maven</groupId> |
|
<artifactId>maven-apt-plugin</artifactId> |
|
<version>1.0.2</version> |
|
<executions> |
|
<execution> |
|
<phase>generate-test-sources</phase> |
|
<goals> |
|
<goal>test-process</goal> |
|
</goals> |
|
<configuration> |
|
<outputDirectory>target/generated-sources/test-annotations</outputDirectory> |
|
<processor>com.mysema.query.apt.QuerydslAnnotationProcessor</processor> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|