Skip to content

Commit 21cd0e8

Browse files
committed
Sort pom
1 parent 9a734ee commit 21cd0e8

File tree

32 files changed

+1890
-1932
lines changed

32 files changed

+1890
-1932
lines changed

pom.xml

Lines changed: 245 additions & 253 deletions
Large diffs are not rendered by default.

querydsl-apt/pom.xml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
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">
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<parent>
@@ -11,10 +11,10 @@
1111

1212
<groupId>com.querydsl</groupId>
1313
<artifactId>querydsl-apt</artifactId>
14+
<packaging>jar</packaging>
1415
<name>Querydsl - APT support</name>
1516
<description>APT based Source code generation for Querydsl</description>
1617
<url>${project.homepage}</url>
17-
<packaging>jar</packaging>
1818

1919
<scm>
2020
<connection>${project.checkout}</connection>
@@ -46,7 +46,7 @@
4646
<version>2.2.3</version>
4747
<scope>provided</scope>
4848
</dependency>
49-
49+
5050
<!-- provided -->
5151
<dependency>
5252
<groupId>org.datanucleus</groupId>
@@ -61,7 +61,7 @@
6161
<exclusions>
6262
<exclusion>
6363
<groupId>org.apache.commons</groupId>
64-
<artifactId>commons-lang3</artifactId>
64+
<artifactId>commons-lang3</artifactId>
6565
</exclusion>
6666
<exclusion>
6767
<groupId>commons-io</groupId>
@@ -79,26 +79,26 @@
7979
<version>${morphia.version}</version>
8080
<scope>provided</scope>
8181
</dependency>
82-
82+
8383
<!-- test -->
8484
<dependency>
8585
<groupId>joda-time</groupId>
8686
<artifactId>joda-time</artifactId>
8787
<version>${jodatime.version}</version>
8888
<scope>test</scope>
89-
</dependency>
89+
</dependency>
9090
<dependency>
9191
<groupId>org.hibernate</groupId>
9292
<artifactId>hibernate-core</artifactId>
9393
<version>${hibernate.version}</version>
9494
<scope>test</scope>
9595
<exclusions>
9696
<exclusion>
97-
<artifactId>javassist</artifactId>
9897
<groupId>org.javassist</groupId>
98+
<artifactId>javassist</artifactId>
9999
</exclusion>
100100
</exclusions>
101-
</dependency>
101+
</dependency>
102102
<dependency>
103103
<groupId>org.hibernate</groupId>
104104
<artifactId>hibernate-envers</artifactId>
@@ -109,28 +109,36 @@
109109
<groupId>com.querydsl</groupId>
110110
<artifactId>querydsl-core</artifactId>
111111
<version>${project.version}</version>
112-
<scope>test</scope>
113112
<type>test-jar</type>
113+
<scope>test</scope>
114114
</dependency>
115-
115+
116116
<dependency>
117117
<groupId>org.joda</groupId>
118118
<artifactId>joda-money</artifactId>
119119
<version>0.9</version>
120120
<scope>test</scope>
121121
</dependency>
122-
122+
123123
<dependency>
124124
<groupId>org.eclipse.jdt.core.compiler</groupId>
125125
<artifactId>ecj</artifactId>
126126
<scope>test</scope>
127127
</dependency>
128-
128+
129129
</dependencies>
130130

131+
<repositories>
132+
<!--for org.springframework.roo:org.springframework.roo.annotations -->
133+
<repository>
134+
<id>spring roo repository</id>
135+
<url>http://spring-roo-repository.springsource.org/release</url>
136+
</repository>
137+
</repositories>
138+
131139
<build>
132140
<plugins>
133-
<!--
141+
<!--
134142
<plugin>
135143
<groupId>com.querydsl</groupId>
136144
<artifactId>querydsl-maven-plugin</artifactId>
@@ -160,8 +168,8 @@
160168
<plugin>
161169
<groupId>org.apache.felix</groupId>
162170
<artifactId>maven-bundle-plugin</artifactId>
163-
</plugin>
164-
171+
</plugin>
172+
165173
<plugin>
166174
<artifactId>maven-surefire-plugin</artifactId>
167175
<configuration>
@@ -186,17 +194,17 @@
186194
</execution>
187195
</executions>
188196
</plugin>
189-
197+
190198
<plugin>
191199
<artifactId>maven-assembly-plugin</artifactId>
192200
<executions>
193201
<execution>
194-
<id>apt-jars</id>
202+
<id>apt-jars</id>
195203
<goals>
196-
<goal>single</goal>
204+
<goal>single</goal>
197205
</goals>
198206
<phase>package</phase>
199-
<configuration>
207+
<configuration>
200208
<descriptors>
201209
<descriptor>src/main/general.xml</descriptor>
202210
<descriptor>src/main/hibernate.xml</descriptor>
@@ -209,20 +217,20 @@
209217
</descriptors>
210218
<outputDirectory>${project.build.directory}</outputDirectory>
211219
</configuration>
212-
</execution>
213-
</executions>
214-
</plugin>
220+
</execution>
221+
</executions>
222+
</plugin>
215223

216224
<plugin>
217225
<groupId>com.mysema.maven</groupId>
218226
<artifactId>apt-maven-plugin</artifactId>
219-
<executions>
227+
<executions>
220228
<execution>
221-
<phase>generate-test-sources</phase>
222229
<goals>
223230
<goal>test-process</goal>
224231
<goal>add-test-sources</goal>
225232
</goals>
233+
<phase>generate-test-sources</phase>
226234
<configuration>
227235
<outputDirectory>target/generated-test-sources/java</outputDirectory>
228236
<logOnlyOnError>true</logOnlyOnError>
@@ -231,12 +239,12 @@
231239
<processor>com.querydsl.apt.hibernate.HibernateAnnotationProcessor</processor>
232240
<processor>com.querydsl.apt.jdo.JDOAnnotationProcessor</processor>
233241
<processor>com.querydsl.apt.roo.RooAnnotationProcessor</processor>
234-
</processors>
242+
</processors>
235243
</configuration>
236-
</execution>
244+
</execution>
237245
</executions>
238246
</plugin>
239-
247+
240248
<!--
241249
<plugin>
242250
<groupId>org.codehaus.mojo</groupId>
@@ -260,12 +268,4 @@
260268
</plugins>
261269
</build>
262270

263-
<repositories>
264-
<!--for org.springframework.roo:org.springframework.roo.annotations -->
265-
<repository>
266-
<id>spring roo repository</id>
267-
<url>http://spring-roo-repository.springsource.org/release</url>
268-
</repository>
269-
</repositories>
270-
271271
</project>

querydsl-codegen-utils/pom.xml

Lines changed: 42 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,70 @@
11
<?xml version="1.0" encoding="UTF-8"?>
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">
2+
<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">
33

44
<modelVersion>4.0.0</modelVersion>
5-
<artifactId>codegen-utils</artifactId>
6-
<version>5.0.0-SNAPSHOT</version>
7-
<name>Querydsl - Codegen utils</name>
8-
<description>Code generation and compilation for Java</description>
95

106
<parent>
117
<groupId>com.querydsl</groupId>
128
<artifactId>querydsl-root</artifactId>
139
<version>5.0.0-SNAPSHOT</version>
1410
<relativePath>../pom.xml</relativePath>
1511
</parent>
16-
12+
<artifactId>codegen-utils</artifactId>
13+
<version>5.0.0-SNAPSHOT</version>
14+
1715
<packaging>jar</packaging>
16+
<name>Querydsl - Codegen utils</name>
17+
<description>Code generation and compilation for Java</description>
1818

1919
<inceptionYear>2010</inceptionYear>
20-
20+
2121
<licenses>
2222
<license>
2323
<name>Apache License, Version 2.0</name>
2424
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
2525
</license>
2626
</licenses>
27-
27+
28+
<developers>
29+
<developer>
30+
<id>tiwe</id>
31+
<name>Timo Westkämper</name>
32+
<email>[email protected]</email>
33+
<organization>Mysema Ltd</organization>
34+
<roles>
35+
<role>Architect</role>
36+
</roles>
37+
</developer>
38+
<developer>
39+
<id>laim</id>
40+
<name>Lassi Immonen</name>
41+
<email>[email protected]</email>
42+
<organization>Mysema Ltd</organization>
43+
<roles>
44+
<role>Consultant</role>
45+
</roles>
46+
</developer>
47+
</developers>
48+
2849
<scm>
2950
<connection>scm:git:[email protected]:querydsl/codegen.git</connection>
3051
<url>[email protected]:querydsl/codegen.git</url>
31-
</scm>
32-
52+
</scm>
53+
3354
<properties>
3455
<commons.collections.version>4.01</commons.collections.version>
3556
<commons.lang.version>3.0.1</commons.lang.version>
3657
<ecj.version>4.6.1</ecj.version>
3758
<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>
3859
</properties>
39-
60+
4061
<dependencies>
4162
<dependency>
4263
<groupId>org.eclipse.jdt.core.compiler</groupId>
4364
<artifactId>ecj</artifactId>
4465
<version>${ecj.version}</version>
45-
</dependency>
46-
66+
</dependency>
67+
4768
<!-- test -->
4869
<dependency>
4970
<groupId>junit</groupId>
@@ -57,7 +78,14 @@
5778
<scope>provided</scope>
5879
</dependency>
5980
</dependencies>
60-
81+
82+
<pluginRepositories>
83+
<pluginRepository>
84+
<id>com.springsource.repository.bundles.release</id>
85+
<url>http://repository.springsource.com/maven/bundles/release</url>
86+
</pluginRepository>
87+
</pluginRepositories>
88+
6189
<build>
6290
<plugins>
6391
<plugin>
@@ -90,33 +118,4 @@
90118
</plugin>
91119
</plugins>
92120
</build>
93-
94-
<pluginRepositories>
95-
<pluginRepository>
96-
<id>com.springsource.repository.bundles.release</id>
97-
<url>http://repository.springsource.com/maven/bundles/release</url>
98-
</pluginRepository>
99-
</pluginRepositories>
100-
101-
102-
<developers>
103-
<developer>
104-
<id>tiwe</id>
105-
<name>Timo Westkämper</name>
106-
<email>[email protected]</email>
107-
<organization>Mysema Ltd</organization>
108-
<roles>
109-
<role>Architect</role>
110-
</roles>
111-
</developer>
112-
<developer>
113-
<id>laim</id>
114-
<name>Lassi Immonen</name>
115-
<email>[email protected]</email>
116-
<organization>Mysema Ltd</organization>
117-
<roles>
118-
<role>Consultant</role>
119-
</roles>
120-
</developer>
121-
</developers>
122121
</project>

0 commit comments

Comments
 (0)