Skip to content

Commit c0c8af7

Browse files
committed
pom formatting - arrang tags as per standard order
1 parent 3e210d9 commit c0c8af7

26 files changed

Lines changed: 436 additions & 426 deletions

File tree

aws-app-sync/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
<relativePath>../parent-boot-2</relativePath>
1414
</parent>
1515

16-
<properties>
17-
<java.version>1.8</java.version>
18-
</properties>
19-
2016
<dependencies>
2117

2218
<dependency>
@@ -50,4 +46,7 @@
5046
</plugins>
5147
</build>
5248

49+
<properties>
50+
<java.version>1.8</java.version>
51+
</properties>
5352
</project>

core-java-modules/core-java-arrays-operations-basic/pom.xml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,6 @@
1313
<name>core-java-arrays-operations-basic</name>
1414
<packaging>jar</packaging>
1515

16-
<build>
17-
<plugins>
18-
<plugin>
19-
<groupId>org.apache.maven.plugins</groupId>
20-
<artifactId>maven-shade-plugin</artifactId>
21-
<version>${shade.plugin.version}</version>
22-
<executions>
23-
<execution>
24-
<phase>package</phase>
25-
<goals>
26-
<goal>shade</goal>
27-
</goals>
28-
<configuration>
29-
<finalName>benchmarks</finalName>
30-
<transformers>
31-
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
32-
<mainClass>org.openjdk.jmh.Main</mainClass>
33-
</transformer>
34-
</transformers>
35-
</configuration>
36-
</execution>
37-
</executions>
38-
</plugin>
39-
</plugins>
40-
</build>
41-
4216
<dependencies>
4317
<dependency>
4418
<groupId>org.apache.commons</groupId>
@@ -66,6 +40,32 @@
6640
</dependency>
6741
</dependencies>
6842

43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-shade-plugin</artifactId>
48+
<version>${shade.plugin.version}</version>
49+
<executions>
50+
<execution>
51+
<phase>package</phase>
52+
<goals>
53+
<goal>shade</goal>
54+
</goals>
55+
<configuration>
56+
<finalName>benchmarks</finalName>
57+
<transformers>
58+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
59+
<mainClass>org.openjdk.jmh.Main</mainClass>
60+
</transformer>
61+
</transformers>
62+
</configuration>
63+
</execution>
64+
</executions>
65+
</plugin>
66+
</plugins>
67+
</build>
68+
6969
<properties>
7070
<shade.plugin.version>3.2.0</shade.plugin.version>
7171

core-java-modules/core-java-arrays-sorting/pom.xml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,6 @@
1414
<name>core-java-arrays-sorting</name>
1515
<packaging>jar</packaging>
1616

17-
<build>
18-
<plugins>
19-
<plugin>
20-
<groupId>org.apache.maven.plugins</groupId>
21-
<artifactId>maven-shade-plugin</artifactId>
22-
<version>${shade.plugin.version}</version>
23-
<executions>
24-
<execution>
25-
<phase>package</phase>
26-
<goals>
27-
<goal>shade</goal>
28-
</goals>
29-
<configuration>
30-
<finalName>benchmarks</finalName>
31-
<transformers>
32-
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
33-
<mainClass>org.openjdk.jmh.Main</mainClass>
34-
</transformer>
35-
</transformers>
36-
</configuration>
37-
</execution>
38-
</executions>
39-
</plugin>
40-
</plugins>
41-
</build>
42-
4317
<dependencies>
4418
<!-- Utilities -->
4519
<dependency>
@@ -74,6 +48,32 @@
7448
</dependency>
7549
</dependencies>
7650

51+
<build>
52+
<plugins>
53+
<plugin>
54+
<groupId>org.apache.maven.plugins</groupId>
55+
<artifactId>maven-shade-plugin</artifactId>
56+
<version>${shade.plugin.version}</version>
57+
<executions>
58+
<execution>
59+
<phase>package</phase>
60+
<goals>
61+
<goal>shade</goal>
62+
</goals>
63+
<configuration>
64+
<finalName>benchmarks</finalName>
65+
<transformers>
66+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
67+
<mainClass>org.openjdk.jmh.Main</mainClass>
68+
</transformer>
69+
</transformers>
70+
</configuration>
71+
</execution>
72+
</executions>
73+
</plugin>
74+
</plugins>
75+
</build>
76+
7777
<properties>
7878
<shade.plugin.version>3.2.0</shade.plugin.version>
7979

core-java-modules/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,18 +134,6 @@
134134
<module>pre-jpms</module>
135135
</modules>
136136

137-
<build>
138-
<pluginManagement>
139-
<plugins>
140-
<plugin>
141-
<groupId>org.apache.maven.plugins</groupId>
142-
<artifactId>maven-surefire-plugin</artifactId>
143-
<version>${maven-surefire-plugin.version}</version>
144-
</plugin>
145-
</plugins>
146-
</pluginManagement>
147-
</build>
148-
149137
<dependencyManagement>
150138
<dependencies>
151139
<dependency>
@@ -163,6 +151,18 @@
163151
</dependencies>
164152
</dependencyManagement>
165153

154+
<build>
155+
<pluginManagement>
156+
<plugins>
157+
<plugin>
158+
<groupId>org.apache.maven.plugins</groupId>
159+
<artifactId>maven-surefire-plugin</artifactId>
160+
<version>${maven-surefire-plugin.version}</version>
161+
</plugin>
162+
</plugins>
163+
</pluginManagement>
164+
</build>
165+
166166
<properties>
167167
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
168168
<junit-jupiter.version>5.6.2</junit-jupiter.version>

ddd/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,6 @@
1717
<relativePath>../parent-boot-2</relativePath>
1818
</parent>
1919

20-
<build>
21-
<plugins>
22-
<plugin>
23-
<groupId>org.apache.maven.plugins</groupId>
24-
<artifactId>maven-surefire-plugin</artifactId>
25-
<version>${maven-surefire-plugin.version}</version>
26-
</plugin>
27-
</plugins>
28-
</build>
29-
3020
<dependencyManagement>
3121
<dependencies>
3222
<dependency>
@@ -105,6 +95,16 @@
10595
</dependency>
10696
</dependencies>
10797

98+
<build>
99+
<plugins>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-surefire-plugin</artifactId>
103+
<version>${maven-surefire-plugin.version}</version>
104+
</plugin>
105+
</plugins>
106+
</build>
107+
108108
<properties>
109109
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
110110

guava-collections-map/pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,21 @@
1414
<relativePath>../parent-java</relativePath>
1515
</parent>
1616

17+
<dependencies>
18+
<dependency>
19+
<groupId>org.junit.jupiter</groupId>
20+
<artifactId>junit-jupiter</artifactId>
21+
<version>${junit-jupiter.version}</version>
22+
<scope>test</scope>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.junit.vintage</groupId>
26+
<artifactId>junit-vintage-engine</artifactId>
27+
<version>${junit-jupiter.version}</version>
28+
<scope>test</scope>
29+
</dependency>
30+
</dependencies>
31+
1732
<build>
1833
<finalName>guava-collections-map</finalName>
1934

@@ -33,21 +48,6 @@
3348
</plugins>
3449
</build>
3550

36-
<dependencies>
37-
<dependency>
38-
<groupId>org.junit.jupiter</groupId>
39-
<artifactId>junit-jupiter</artifactId>
40-
<version>${junit-jupiter.version}</version>
41-
<scope>test</scope>
42-
</dependency>
43-
<dependency>
44-
<groupId>org.junit.vintage</groupId>
45-
<artifactId>junit-vintage-engine</artifactId>
46-
<version>${junit-jupiter.version}</version>
47-
<scope>test</scope>
48-
</dependency>
49-
</dependencies>
50-
5151
<properties>
5252
<junit-jupiter.version>5.6.2</junit-jupiter.version>
5353
</properties>

guava-collections-set/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,6 @@
1313
<relativePath>../parent-java</relativePath>
1414
</parent>
1515

16-
<build>
17-
<finalName>guava-collections-set</finalName>
18-
19-
<plugins>
20-
<plugin>
21-
<groupId>org.apache.maven.plugins</groupId>
22-
<artifactId>maven-surefire-plugin</artifactId>
23-
<version>2.22.2</version>
24-
</plugin>
25-
</plugins>
26-
</build>
27-
2816
<dependencies>
2917
<!-- test scoped -->
3018
<dependency>
@@ -47,6 +35,18 @@
4735
</dependency>
4836
</dependencies>
4937

38+
<build>
39+
<finalName>guava-collections-set</finalName>
40+
41+
<plugins>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-surefire-plugin</artifactId>
45+
<version>2.22.2</version>
46+
</plugin>
47+
</plugins>
48+
</build>
49+
5050
<properties>
5151
<!-- testing -->
5252
<assertj.version>3.6.1</assertj.version>

guava-collections/pom.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,6 @@
1515
<relativePath>../parent-java</relativePath>
1616
</parent>
1717

18-
<build>
19-
<finalName>guava-collections</finalName>
20-
21-
<resources>
22-
<resource>
23-
<directory>src/main/resources</directory>
24-
<filtering>true</filtering>
25-
</resource>
26-
</resources>
27-
28-
<plugins>
29-
<plugin>
30-
<groupId>org.apache.maven.plugins</groupId>
31-
<artifactId>maven-surefire-plugin</artifactId>
32-
<version>2.22.2</version>
33-
</plugin>
34-
</plugins>
35-
</build>
36-
3718
<dependencies>
3819
<!-- utils -->
3920
<dependency>
@@ -76,6 +57,25 @@
7657
</dependency>
7758
</dependencies>
7859

60+
<build>
61+
<finalName>guava-collections</finalName>
62+
63+
<resources>
64+
<resource>
65+
<directory>src/main/resources</directory>
66+
<filtering>true</filtering>
67+
</resource>
68+
</resources>
69+
70+
<plugins>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-surefire-plugin</artifactId>
74+
<version>2.22.2</version>
75+
</plugin>
76+
</plugins>
77+
</build>
78+
7979
<properties>
8080
<!-- util -->
8181
<commons-collections4.version>4.1</commons-collections4.version>

guava-io/pom.xml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,21 @@
1616
<relativePath>../parent-java</relativePath>
1717
</parent>
1818

19+
<dependencies>
20+
<dependency>
21+
<groupId>org.junit.jupiter</groupId>
22+
<artifactId>junit-jupiter</artifactId>
23+
<version>${junit-jupiter.version}</version>
24+
<scope>test</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.junit.vintage</groupId>
28+
<artifactId>junit-vintage-engine</artifactId>
29+
<version>${junit-jupiter.version}</version>
30+
<scope>test</scope>
31+
</dependency>
32+
</dependencies>
33+
1934
<build>
2035
<finalName>guava-io</finalName>
2136

@@ -35,18 +50,4 @@
3550
</plugins>
3651
</build>
3752

38-
<dependencies>
39-
<dependency>
40-
<groupId>org.junit.jupiter</groupId>
41-
<artifactId>junit-jupiter</artifactId>
42-
<version>${junit-jupiter.version}</version>
43-
<scope>test</scope>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.junit.vintage</groupId>
47-
<artifactId>junit-vintage-engine</artifactId>
48-
<version>${junit-jupiter.version}</version>
49-
<scope>test</scope>
50-
</dependency>
51-
</dependencies>
5253
</project>

0 commit comments

Comments
 (0)