|
2 | 2 | <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"> |
3 | 3 |
|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>com.mysema.codegen</groupId> |
6 | | - <artifactId>codegen</artifactId> |
7 | | - <version>0.6.9.BUILD-SNAPSHOT</version> |
| 5 | + <groupId>com.querydsl</groupId> |
| 6 | + <artifactId>codegen-utils</artifactId> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
8 | 8 | <name>Codegen</name> |
9 | 9 | <description>Code generation and compilation for Java</description> |
10 | | - |
| 10 | + |
11 | 11 | <parent> |
12 | | - <groupId>com.mysema.home</groupId> |
13 | | - <artifactId>mysema-source</artifactId> |
14 | | - <version>0.3.1</version> |
| 12 | + <groupId>com.querydsl</groupId> |
| 13 | + <artifactId>querydsl-parent</artifactId> |
| 14 | + <version>0.1.0</version> |
15 | 15 | </parent> |
16 | 16 |
|
17 | 17 | <packaging>jar</packaging> |
|
33 | 33 | <properties> |
34 | 34 | <commons.collections.version>4.01</commons.collections.version> |
35 | 35 | <commons.lang.version>3.0.1</commons.lang.version> |
36 | | - <guava.version>11.0.2</guava.version> |
37 | 36 | <ecj.version>4.3.1</ecj.version> |
38 | 37 | </properties> |
39 | 38 |
|
40 | 39 | <dependencies> |
41 | | - <dependency> |
42 | | - <groupId>com.google.guava</groupId> |
43 | | - <artifactId>guava</artifactId> |
44 | | - <version>18.0</version> |
45 | | - </dependency> |
46 | | - |
47 | 40 | <dependency> |
48 | 41 | <groupId>org.eclipse.jdt.core.compiler</groupId> |
49 | 42 | <artifactId>ecj</artifactId> |
|
54 | 47 | <dependency> |
55 | 48 | <groupId>junit</groupId> |
56 | 49 | <artifactId>junit</artifactId> |
57 | | - <version>4.8.1</version> |
| 50 | + <version>4.13.1</version> |
58 | 51 | <scope>test</scope> |
59 | | - <exclusions> |
60 | | - <exclusion> |
61 | | - <groupId>javax.servlet</groupId> |
62 | | - <artifactId>servlet-api</artifactId> |
63 | | - </exclusion> |
64 | | - </exclusions> |
65 | 52 | </dependency> |
66 | 53 | <dependency> |
67 | 54 | <groupId>javax.validation</groupId> |
68 | 55 | <artifactId>validation-api</artifactId> |
69 | 56 | <version>1.0.CR3</version> |
70 | 57 | <scope>test</scope> |
71 | 58 | </dependency> |
72 | | - |
73 | | - |
74 | 59 | </dependencies> |
75 | 60 |
|
76 | 61 | <build> |
77 | 62 | <plugins> |
78 | | - <plugin> |
79 | | - <groupId>org.apache.maven.plugins</groupId> |
80 | | - <artifactId>maven-jar-plugin</artifactId> |
81 | | - <configuration> |
82 | | - <useDefaultManifestFile>true</useDefaultManifestFile> |
83 | | - </configuration> |
84 | | - </plugin> |
85 | | - <plugin> |
86 | | - <groupId>com.springsource.bundlor</groupId> |
87 | | - <artifactId>com.springsource.bundlor.maven</artifactId> |
88 | | - <version>1.0.0.RELEASE</version> |
89 | | - <executions> |
90 | | - <execution> |
91 | | - <id>bundlor</id> |
92 | | - <goals> |
93 | | - <goal>bundlor</goal> |
94 | | - </goals> |
95 | | - </execution> |
96 | | - </executions> |
97 | | - <configuration> |
98 | | - <failOnWarnings>true</failOnWarnings> |
99 | | - </configuration> |
100 | | - </plugin> |
| 63 | + <plugin> |
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
| 65 | + <artifactId>maven-jar-plugin</artifactId> |
| 66 | + <version>2.6</version> |
| 67 | + <configuration> |
| 68 | + <useDefaultManifestFile>true</useDefaultManifestFile> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + <plugin> |
| 72 | + <groupId>com.springsource.bundlor</groupId> |
| 73 | + <artifactId>com.springsource.bundlor.maven</artifactId> |
| 74 | + <version>1.0.0.RELEASE</version> |
| 75 | + <executions> |
| 76 | + <execution> |
| 77 | + <id>bundlor</id> |
| 78 | + <goals> |
| 79 | + <goal>bundlor</goal> |
| 80 | + </goals> |
| 81 | + </execution> |
| 82 | + </executions> |
| 83 | + <configuration> |
| 84 | + <failOnWarnings>true</failOnWarnings> |
| 85 | + </configuration> |
| 86 | + </plugin> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-compiler-plugin</artifactId> |
| 90 | + <configuration> |
| 91 | + <source>1.8</source> |
| 92 | + <target>1.8</target> |
| 93 | + </configuration> |
| 94 | + </plugin> |
101 | 95 | </plugins> |
102 | 96 | </build> |
103 | | - |
104 | | -<!-- |
105 | | - <repositories> |
106 | | - <repository> |
107 | | - <id>jboss</id> |
108 | | - <url>http://repository.jboss.org/maven2</url> |
109 | | - <releases> |
110 | | - <enabled>true</enabled> |
111 | | - </releases> |
112 | | - <snapshots> |
113 | | - <enabled>false</enabled> |
114 | | - </snapshots> |
115 | | - </repository> |
116 | | - </repositories> |
117 | | ---> |
118 | | - |
| 97 | + |
119 | 98 | <pluginRepositories> |
120 | 99 | <pluginRepository> |
121 | 100 | <id>com.springsource.repository.bundles.release</id> |
122 | 101 | <url>http://repository.springsource.com/maven/bundles/release</url> |
123 | 102 | </pluginRepository> |
124 | 103 | </pluginRepositories> |
125 | 104 |
|
| 105 | + |
| 106 | + <developers> |
| 107 | + <developer> |
| 108 | + <id>tiwe</id> |
| 109 | + <name>Timo Westkämper</name> |
| 110 | + <email>timo.westkamper@mysema.com</email> |
| 111 | + <organization>Mysema Ltd</organization> |
| 112 | + <roles> |
| 113 | + <role>Architect</role> |
| 114 | + </roles> |
| 115 | + </developer> |
| 116 | + <developer> |
| 117 | + <id>laim</id> |
| 118 | + <name>Lassi Immonen</name> |
| 119 | + <email>lassi.immonen@mysema.com</email> |
| 120 | + <organization>Mysema Ltd</organization> |
| 121 | + <roles> |
| 122 | + <role>Consultant</role> |
| 123 | + </roles> |
| 124 | + </developer> |
| 125 | + </developers> |
126 | 126 | </project> |
0 commit comments