Skip to content

Commit 2d6e269

Browse files
committed
Reformat pom.xml files using sortpom: reformat
1 parent e278f93 commit 2d6e269

22 files changed

Lines changed: 874 additions & 879 deletions

File tree

geowebcache/arcgiscache/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
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
<!-- mvn -Dtest=StorageBrokerTest -Dmaven.test.jvmargs='-XX:+HeapDumpOnOutOfMemoryError -Xms32m -Xmx32m' test -->
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>org.geowebcache</groupId>
77
<artifactId>geowebcache</artifactId>
8-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
8+
<version>1.20-SNAPSHOT</version>
9+
<!-- GWC VERSION -->
910
</parent>
1011
<groupId>org.geowebcache</groupId>
1112
<artifactId>gwc-arcgiscache</artifactId>
@@ -24,7 +25,7 @@
2425
<groupId>javax.servlet</groupId>
2526
<artifactId>javax.servlet-api</artifactId>
2627
</dependency>
27-
28+
2829
<!-- test dependencies -->
2930
<dependency>
3031
<groupId>junit</groupId>
@@ -50,13 +51,12 @@
5051
<groupId>org.geowebcache</groupId>
5152
<artifactId>gwc-core</artifactId>
5253
<version>${project.version}</version>
53-
<scope>test</scope>
5454
<classifier>tests</classifier>
55+
<scope>test</scope>
5556
</dependency>
5657
</dependencies>
5758

5859
<build>
59-
<plugins>
60-
</plugins>
60+
<plugins></plugins>
6161
</build>
6262
</project>

geowebcache/azureblob/pom.xml

Lines changed: 55 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,60 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<parent>
6-
<artifactId>geowebcache</artifactId>
7-
<groupId>org.geowebcache</groupId>
8-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
9-
</parent>
10-
<modelVersion>4.0.0</modelVersion>
11-
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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
125
<groupId>org.geowebcache</groupId>
13-
<artifactId>gwc-azure-blob</artifactId>
6+
<artifactId>geowebcache</artifactId>
7+
<version>1.20-SNAPSHOT</version>
8+
<!-- GWC VERSION -->
9+
</parent>
10+
11+
<groupId>org.geowebcache</groupId>
12+
<artifactId>gwc-azure-blob</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.geowebcache</groupId>
17+
<artifactId>gwc-core</artifactId>
18+
<version>${project.version}</version>
19+
</dependency>
1420

15-
<dependencies>
16-
<dependency>
17-
<groupId>org.geowebcache</groupId>
18-
<artifactId>gwc-core</artifactId>
19-
<version>${project.version}</version>
20-
</dependency>
21-
22-
<dependency>
23-
<groupId>com.microsoft.azure</groupId>
24-
<artifactId>azure-storage-blob</artifactId>
25-
<!-- at the time of writing 11.0.1 was available but pom on repoes was corrupted -->
26-
<version>11.0.0</version>
27-
</dependency>
21+
<dependency>
22+
<groupId>com.microsoft.azure</groupId>
23+
<artifactId>azure-storage-blob</artifactId>
24+
<!-- at the time of writing 11.0.1 was available but pom on repoes was corrupted -->
25+
<version>11.0.0</version>
26+
</dependency>
2827

29-
<dependency>
30-
<groupId>junit</groupId>
31-
<artifactId>junit</artifactId>
32-
<scope>test</scope>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.mockito</groupId>
36-
<artifactId>mockito-core</artifactId>
37-
<scope>test</scope>
38-
</dependency>
39-
<dependency>
40-
<groupId>org.easymock</groupId>
41-
<artifactId>easymock</artifactId>
42-
<scope>test</scope>
43-
</dependency>
44-
<dependency>
45-
<groupId>org.geowebcache</groupId>
46-
<artifactId>gwc-core</artifactId>
47-
<scope>test</scope>
48-
<classifier>tests</classifier>
49-
</dependency>
50-
<dependency>
51-
<groupId>org.hamcrest</groupId>
52-
<artifactId>hamcrest-library</artifactId>
53-
<scope>test</scope>
54-
</dependency>
55-
<dependency>
56-
<groupId>javax.servlet</groupId>
57-
<artifactId>javax.servlet-api</artifactId>
58-
<scope>provided</scope>
59-
</dependency>
60-
</dependencies>
28+
<dependency>
29+
<groupId>junit</groupId>
30+
<artifactId>junit</artifactId>
31+
<scope>test</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.mockito</groupId>
35+
<artifactId>mockito-core</artifactId>
36+
<scope>test</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.easymock</groupId>
40+
<artifactId>easymock</artifactId>
41+
<scope>test</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.geowebcache</groupId>
45+
<artifactId>gwc-core</artifactId>
46+
<classifier>tests</classifier>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.hamcrest</groupId>
51+
<artifactId>hamcrest-library</artifactId>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>javax.servlet</groupId>
56+
<artifactId>javax.servlet-api</artifactId>
57+
<scope>provided</scope>
58+
</dependency>
59+
</dependencies>
6160
</project>

geowebcache/core/pom.xml

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
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">
43
<!-- mvn -Dtest=StorageBrokerTest -Dmaven.test.jvmargs='-XX:+HeapDumpOnOutOfMemoryError -Xms32m -Xmx32m' test -->
54
<modelVersion>4.0.0</modelVersion>
65
<parent>
76
<groupId>org.geowebcache</groupId>
87
<artifactId>geowebcache</artifactId>
9-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
8+
<version>1.20-SNAPSHOT</version>
9+
<!-- GWC VERSION -->
1010
</parent>
1111
<groupId>org.geowebcache</groupId>
1212
<artifactId>gwc-core</artifactId>
@@ -20,8 +20,8 @@
2020
<artifactId>commons-logging</artifactId>
2121
<exclusions>
2222
<exclusion>
23-
<groupId>avalon-framework</groupId>
2423
<artifactId>avalon-framework</artifactId>
24+
<groupId>avalon-framework</groupId>
2525
</exclusion>
2626
</exclusions>
2727
</dependency>
@@ -46,7 +46,6 @@
4646
<artifactId>h2</artifactId>
4747
</dependency>
4848

49-
5049
<dependency>
5150
<groupId>log4j</groupId>
5251
<artifactId>log4j</artifactId>
@@ -115,10 +114,10 @@
115114
<groupId>it.geosolutions.jaiext.utilities</groupId>
116115
<artifactId>jt-utilities</artifactId>
117116
<exclusions>
118-
<exclusion>
119-
<groupId>org.locationtech.jts</groupId>
120-
<artifactId>jts-core</artifactId>
121-
</exclusion>
117+
<exclusion>
118+
<artifactId>jts-core</artifactId>
119+
<groupId>org.locationtech.jts</groupId>
120+
</exclusion>
122121
</exclusions>
123122
</dependency>
124123

@@ -127,8 +126,8 @@
127126
<artifactId>jt-colorindexer</artifactId>
128127
<exclusions>
129128
<exclusion>
130-
<groupId>org.locationtech.jts</groupId>
131129
<artifactId>jts-core</artifactId>
130+
<groupId>org.locationtech.jts</groupId>
132131
</exclusion>
133132
</exclusions>
134133
</dependency>
@@ -146,7 +145,6 @@
146145
<artifactId>jackson-core</artifactId>
147146
</dependency>
148147

149-
150148
<dependency>
151149
<groupId>commons-httpclient</groupId>
152150
<artifactId>commons-httpclient</artifactId>
@@ -190,16 +188,15 @@
190188
<scope>test</scope>
191189
</dependency>
192190

193-
<!-- Thijs Brentjens: for security fixes, OWASP library-->
194-
<dependency>
195-
<groupId>org.owasp.encoder</groupId>
196-
<artifactId>encoder</artifactId>
197-
<version>1.1</version>
198-
</dependency>
191+
<!-- Thijs Brentjens: for security fixes, OWASP library-->
192+
<dependency>
193+
<groupId>org.owasp.encoder</groupId>
194+
<artifactId>encoder</artifactId>
195+
<version>1.1</version>
196+
</dependency>
199197

200198
</dependencies>
201199

202-
203200
<build>
204201
<plugins>
205202
<plugin>

geowebcache/diskquota/bdb/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
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
<!-- mvn -Dtest=StorageBrokerTest -Dmaven.test.jvmargs='-XX:+HeapDumpOnOutOfMemoryError -Xms32m -Xmx32m' test -->
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>org.geowebcache</groupId>
77
<artifactId>gwc-diskquota</artifactId>
8-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
8+
<version>1.20-SNAPSHOT</version>
9+
<!-- GWC VERSION -->
910
</parent>
1011
<artifactId>gwc-diskquota-bdb</artifactId>
1112
<packaging>jar</packaging>
@@ -42,8 +43,8 @@
4243
<dependency>
4344
<groupId>org.geowebcache</groupId>
4445
<artifactId>gwc-core</artifactId>
45-
<scope>test</scope>
4646
<classifier>tests</classifier>
47+
<scope>test</scope>
4748
</dependency>
4849
<dependency>
4950
<groupId>org.hamcrest</groupId>
@@ -55,11 +56,10 @@
5556
<artifactId>javax.servlet-api</artifactId>
5657
<scope>test</scope>
5758
</dependency>
58-
59+
5960
</dependencies>
6061

6162
<build>
62-
<plugins>
63-
</plugins>
63+
<plugins></plugins>
6464
</build>
6565
</project>

geowebcache/diskquota/core/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
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
<!-- mvn -Dtest=StorageBrokerTest -Dmaven.test.jvmargs='-XX:+HeapDumpOnOutOfMemoryError -Xms32m -Xmx32m' test -->
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>org.geowebcache</groupId>
77
<artifactId>gwc-diskquota</artifactId>
8-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
8+
<version>1.20-SNAPSHOT</version>
9+
<!-- GWC VERSION -->
910
</parent>
1011
<groupId>org.geowebcache</groupId>
1112
<artifactId>gwc-diskquota-core</artifactId>
@@ -54,13 +55,12 @@
5455
<groupId>org.geowebcache</groupId>
5556
<artifactId>gwc-core</artifactId>
5657
<version>${project.version}</version>
57-
<scope>test</scope>
5858
<classifier>tests</classifier>
59+
<scope>test</scope>
5960
</dependency>
6061
</dependencies>
6162

6263
<build>
63-
<plugins>
64-
</plugins>
64+
<plugins></plugins>
6565
</build>
6666
</project>

geowebcache/diskquota/jdbc/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
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
<!-- mvn -Dtest=StorageBrokerTest -Dmaven.test.jvmargs='-XX:+HeapDumpOnOutOfMemoryError
44
-Xms32m -Xmx32m' test -->
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>org.geowebcache</groupId>
88
<artifactId>gwc-diskquota</artifactId>
9-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
9+
<version>1.20-SNAPSHOT</version>
10+
<!-- GWC VERSION -->
1011
</parent>
1112
<groupId>org.geowebcache</groupId>
1213
<artifactId>gwc-diskquota-jdbc</artifactId>
@@ -29,7 +30,6 @@
2930
<artifactId>h2</artifactId>
3031
</dependency>
3132

32-
3333
<!-- test dependencies -->
3434
<dependency>
3535
<groupId>junit</groupId>
@@ -50,8 +50,8 @@
5050
<groupId>org.geowebcache</groupId>
5151
<artifactId>gwc-core</artifactId>
5252
<version>${project.version}</version>
53-
<scope>test</scope>
5453
<classifier>tests</classifier>
54+
<scope>test</scope>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.hamcrest</groupId>
@@ -75,8 +75,8 @@
7575
</activation>
7676
<dependencies>
7777
<dependency>
78-
<artifactId>ojdbc14</artifactId>
7978
<groupId>com.oracle</groupId>
79+
<artifactId>ojdbc14</artifactId>
8080
<version>10.2.0.3.0</version>
8181
</dependency>
8282
</dependencies>

geowebcache/diskquota/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
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
<!-- mvn -Dtest=StorageBrokerTest -Dmaven.test.jvmargs='-XX:+HeapDumpOnOutOfMemoryError -Xms32m -Xmx32m' test -->
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>org.geowebcache</groupId>
77
<artifactId>geowebcache</artifactId>
8-
<version>1.20-SNAPSHOT</version><!-- GWC VERSION -->
8+
<version>1.20-SNAPSHOT</version>
9+
<!-- GWC VERSION -->
910
</parent>
1011
<groupId>org.geowebcache</groupId>
1112
<artifactId>gwc-diskquota</artifactId>

0 commit comments

Comments
 (0)