mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
120 lines
3.8 KiB
XML
120 lines
3.8 KiB
XML
<?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>com.mysema.querydsl</groupId>
|
|
<artifactId>querydsl-root</artifactId>
|
|
<version>0.2.7</version>
|
|
</parent>
|
|
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
<artifactId>querydsl-hql</artifactId>
|
|
<name>Querydsl hql</name>
|
|
<url>http://source.mysema.com/projects/querydsl-hql</url>
|
|
<description>Hibernate / HQL support for querydsl</description>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate</artifactId>
|
|
<version>3.2.1.ga</version>
|
|
<scope>provided</scope>
|
|
<!-- license : LGPL v2.1 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-annotations</artifactId>
|
|
<version>3.2.1.ga</version>
|
|
<scope>provided</scope>
|
|
<!-- license : LGPL v2.1 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
<artifactId>querydsl-core</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
<artifactId>querydsl-annotations</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
<!-- test -->
|
|
|
|
<!-- TODO : replace MySQL dependency with something else -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.0.2</version>
|
|
<scope>test</scope>
|
|
<!-- license : TODO -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
<artifactId>querydsl-apt</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<scope>provided</scope>
|
|
<!-- license : TODO -->
|
|
</dependency>
|
|
|
|
<!-- logging -->
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.14</version>
|
|
<!-- license : Apache License 2.0 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>1.3.1</version>
|
|
<!-- license : http://www.slf4j.org/license.html -->
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.myfaces.tobago</groupId>
|
|
<artifactId>maven-apt-plugin</artifactId>
|
|
<version>1.0.15</version>
|
|
<executions>
|
|
<execution>
|
|
<id>dummy-domain</id>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>testExecute</goal>
|
|
</goals>
|
|
<configuration>
|
|
<aptSourceRoots>
|
|
<aptSourceRoot>src/test/java</aptSourceRoot>
|
|
</aptSourceRoots>
|
|
<force>true</force>
|
|
<fork>true</fork>
|
|
<factory>com.mysema.query.apt.APTFactory</factory>
|
|
<testGenerated>
|
|
target/generated-test-sources/java
|
|
</testGenerated>
|
|
<nocompile>true</nocompile>
|
|
<A>
|
|
-Ainclude=src/test/includes/instances.txt,
|
|
-AdestClass=com.mysema.query.Domain1,
|
|
-AdtoClass=com.mysema.query.Domain1Dtos
|
|
</A>
|
|
<testIncludes>
|
|
<testInclude>
|
|
com/mysema/query/grammar/hql/*.java
|
|
</testInclude>
|
|
</testIncludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |