Skip to content

Commit 612752f

Browse files
committed
JAVA-5223: Fix formatting of POMs (Part 2)
1 parent 73d9fdb commit 612752f

File tree

27 files changed

+66
-117
lines changed

27 files changed

+66
-117
lines changed

bazel/bazelapp/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
65
<modelVersion>4.0.0</modelVersion>

bazel/bazelgreeting/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
65
<modelVersion>4.0.0</modelVersion>

bazel/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
65
<modelVersion>4.0.0</modelVersion>

blade/pom.xml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
65
<modelVersion>4.0.0</modelVersion>
@@ -19,27 +18,23 @@
1918
<artifactId>blade-mvc</artifactId>
2019
<version>${blade-mvc.version}</version>
2120
</dependency>
22-
2321
<dependency>
2422
<groupId>org.webjars</groupId>
2523
<artifactId>bootstrap</artifactId>
2624
<version>${bootstrap.version}</version>
2725
</dependency>
28-
2926
<dependency>
3027
<groupId>org.apache.commons</groupId>
3128
<artifactId>commons-lang3</artifactId>
3229
<version>${commons-lang3.version}</version>
3330
</dependency>
34-
3531
<!-- PROVIDED -->
3632
<dependency>
3733
<groupId>org.projectlombok</groupId>
3834
<artifactId>lombok</artifactId>
3935
<version>${lombok.version}</version>
4036
<scope>provided</scope>
4137
</dependency>
42-
4338
<!-- TEST -->
4439
<dependency>
4540
<groupId>org.assertj</groupId>
@@ -111,7 +106,6 @@
111106
</arguments>
112107
</configuration>
113108
</execution>
114-
115109
<!--Stop all processes in reverse order -->
116110
<execution>
117111
<id>stop-all</id>
@@ -122,7 +116,6 @@
122116
</execution>
123117
</executions>
124118
</plugin>
125-
126119
<plugin>
127120
<artifactId>maven-assembly-plugin</artifactId>
128121
<version>${assembly.plugin.version}</version>
@@ -164,4 +157,4 @@
164157
<assembly.plugin.version>3.1.0</assembly.plugin.version>
165158
</properties>
166159

167-
</project>
160+
</project>

bootique/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
65
<modelVersion>4.0.0</modelVersion>

cdi/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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">
65
<modelVersion>4.0.0</modelVersion>
76
<artifactId>cdi</artifactId>
87
<version>1.0-SNAPSHOT</version>
@@ -57,4 +56,4 @@
5756
<assertj-core.version>3.10.0</assertj-core.version>
5857
</properties>
5958

60-
</project>
59+
</project>

checker-plugin/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
43
xmlns="http://maven.apache.org/POM/4.0.0"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
65
<modelVersion>4.0.0</modelVersion>
@@ -69,7 +68,6 @@
6968
<!-- location of the annotated JDK, which comes from a Maven dependency -->
7069
<arg>-Xbootclasspath/p:${annotatedJdk}</arg>
7170
<!-- -->
72-
7371
<!-- Uncomment the following line to use the type annotations compiler. -->
7472
<!-- <arg>-J-Xbootclasspath/p:${typeAnnotationsJavac}</arg> -->
7573
<!-- Uncomment the following line to turn type-checking warnings into errors. -->
@@ -91,4 +89,4 @@
9189
<checkerframework.compiler.version>2.3.1</checkerframework.compiler.version>
9290
</properties>
9391

94-
</project>
92+
</project>

cloud-foundry-uaa/cf-uaa-oauth2-client/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
65
<modelVersion>4.0.0</modelVersion>
@@ -36,4 +35,4 @@
3635
</plugins>
3736
</build>
3837

39-
</project>
38+
</project>

cloud-foundry-uaa/cf-uaa-oauth2-resource-server/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
65
<modelVersion>4.0.0</modelVersion>
@@ -36,4 +35,4 @@
3635
</plugins>
3736
</build>
3837

39-
</project>
38+
</project>

code-generation/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
43
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
54
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
65
<modelVersion>4.0.0</modelVersion>
@@ -43,7 +42,6 @@
4342
<version>${auto-service.version}</version>
4443
<optional>true</optional>
4544
</dependency>
46-
4745
<dependency>
4846
<groupId>com.google.inject</groupId>
4947
<artifactId>guice</artifactId>
@@ -58,4 +56,4 @@
5856
<guice.version>4.2.0</guice.version>
5957
</properties>
6058

61-
</project>
59+
</project>

0 commit comments

Comments
 (0)