-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
1,890 additions
and
1,932 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,70 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<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> | ||
<artifactId>codegen-utils</artifactId> | ||
<version>5.0.0-SNAPSHOT</version> | ||
<name>Querydsl - Codegen utils</name> | ||
<description>Code generation and compilation for Java</description> | ||
|
||
<parent> | ||
<groupId>com.querydsl</groupId> | ||
<artifactId>querydsl-root</artifactId> | ||
<version>5.0.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>codegen-utils</artifactId> | ||
<version>5.0.0-SNAPSHOT</version> | ||
|
||
<packaging>jar</packaging> | ||
<name>Querydsl - Codegen utils</name> | ||
<description>Code generation and compilation for Java</description> | ||
|
||
<inceptionYear>2010</inceptionYear> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
|
||
<developers> | ||
<developer> | ||
<id>tiwe</id> | ||
<name>Timo Westkämper</name> | ||
<email>[email protected]</email> | ||
<organization>Mysema Ltd</organization> | ||
<roles> | ||
<role>Architect</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>laim</id> | ||
<name>Lassi Immonen</name> | ||
<email>[email protected]</email> | ||
<organization>Mysema Ltd</organization> | ||
<roles> | ||
<role>Consultant</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:querydsl/codegen.git</connection> | ||
<url>[email protected]:querydsl/codegen.git</url> | ||
</scm> | ||
</scm> | ||
|
||
<properties> | ||
<commons.collections.version>4.01</commons.collections.version> | ||
<commons.lang.version>3.0.1</commons.lang.version> | ||
<ecj.version>4.6.1</ecj.version> | ||
<osgi.import.package>javax.annotation.*;version="0",javax.tools.*;version="0",org.eclipse.jdt.*;version="3.7.2"${osgi.import.package.root}</osgi.import.package> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.jdt.core.compiler</groupId> | ||
<artifactId>ecj</artifactId> | ||
<version>${ecj.version}</version> | ||
</dependency> | ||
</dependency> | ||
|
||
<!-- test --> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
|
@@ -57,7 +78,14 @@ | |
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>com.springsource.repository.bundles.release</id> | ||
<url>http://repository.springsource.com/maven/bundles/release</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
|
@@ -90,33 +118,4 @@ | |
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>com.springsource.repository.bundles.release</id> | ||
<url>http://repository.springsource.com/maven/bundles/release</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
|
||
<developers> | ||
<developer> | ||
<id>tiwe</id> | ||
<name>Timo Westkämper</name> | ||
<email>[email protected]</email> | ||
<organization>Mysema Ltd</organization> | ||
<roles> | ||
<role>Architect</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>laim</id> | ||
<name>Lassi Immonen</name> | ||
<email>[email protected]</email> | ||
<organization>Mysema Ltd</organization> | ||
<roles> | ||
<role>Consultant</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
</project> |
Oops, something went wrong.