mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-16 21:01:10 +08:00
130 lines
3.8 KiB
XML
130 lines
3.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
<artifactId>querydsl-root</artifactId>
|
|
<version>0.2.6</version>
|
|
<name>Querydsl</name>
|
|
<url>http://source.mysema.com/projects/querydsl-root</url>
|
|
<description>parent project for querydsl modules</description>
|
|
<parent>
|
|
<groupId>com.mysema.home</groupId>
|
|
<artifactId>mysema-source</artifactId>
|
|
<version>0.1.0</version>
|
|
</parent>
|
|
<packaging>pom</packaging>
|
|
|
|
<inceptionYear>2007</inceptionYear>
|
|
|
|
<modules>
|
|
<module>../querydsl-core</module>
|
|
<module>../querydsl-annotations</module>
|
|
<module>../querydsl-apt</module>
|
|
<module>../querydsl-hql</module>
|
|
<module>../querydsl-sql</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.4</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>tiwe</id>
|
|
<name>Timo Westkämper</name>
|
|
<email>timo.westkamper@mysema.com</email>
|
|
<organization>Mysema Ltd</organization>
|
|
<roles>
|
|
<role>Project Manager</role>
|
|
<role>Architect</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<id>sasa</id>
|
|
<name>Samppa Saarela</name>
|
|
<email>samppa.saarela@mysema.com</email>
|
|
<organization>Mysema Ltd</organization>
|
|
<roles>
|
|
<role>Architect</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<id>laim</id>
|
|
<name>Lassi Immonen</name>
|
|
<email>lassi.immonen@mysema.com</email>
|
|
<organization>Mysema Ltd</organization>
|
|
<roles>
|
|
<role>Architect</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>source-maven-releases</id>
|
|
<url>scp://source.mysema.com/var/www/source/maven2/releases</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
<id>source-maven-snapshots</id>
|
|
<url>scp://source.mysema.com/var/www/source/maven2/snapshots</url>
|
|
</snapshotRepository>
|
|
<site>
|
|
<id>website</id>
|
|
<url>scp://source.mysema.com/var/www/source/projects/querydsl-root</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU Lesser General Public License, Version 3</name>
|
|
<url>LICENSE.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<properties>
|
|
<svn.path>scm:svn:https://source.mysema.com/svn/mysema</svn.path>
|
|
<viewvc.path>http://source.mysema.com/viewvc/mysema</viewvc.path>
|
|
<path.suffix>projects/querydsl/trunk/${project.artifactId}</path.suffix>
|
|
</properties>
|
|
|
|
<scm>
|
|
<connection>${svn.path}/${path.suffix}</connection>
|
|
<developerConnection>${svn.path}/${path.suffix}</developerConnection>
|
|
<url>${viewvc.path}/${path.suffix}</url>
|
|
</scm>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>junit-report-maven-plugin</artifactId>
|
|
<version>devel</version>
|
|
<configuration>
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<configuration>
|
|
<aggregate>true</aggregate>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
</project>
|