Skip to content

Commit b8dcbe2

Browse files
committed
Cosmetic changes
1 parent 59f07f5 commit b8dcbe2

File tree

5 files changed

+42
-30
lines changed

5 files changed

+42
-30
lines changed

benchmark/pom.xml

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?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/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>io.github.cowwoc.requirements</groupId>
@@ -20,6 +21,29 @@
2021
<module>guava</module>
2122
<module>assertj</module>
2223
</modules>
24+
25+
<dependencies>
26+
<dependency>
27+
<groupId>org.openjdk.jmh</groupId>
28+
<artifactId>jmh-generator-annprocess</artifactId>
29+
<scope>provided</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>ch.qos.logback</groupId>
33+
<artifactId>logback-classic</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.testng</groupId>
37+
<artifactId>testng</artifactId>
38+
<scope>test</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.openjdk.jmh</groupId>
42+
<artifactId>jmh-core</artifactId>
43+
<scope>test</scope>
44+
</dependency>
45+
</dependencies>
46+
2347
<build>
2448
<plugins>
2549
<plugin>
@@ -91,27 +115,7 @@
91115
</plugin>
92116
</plugins>
93117
</build>
94-
<dependencies>
95-
<dependency>
96-
<groupId>org.openjdk.jmh</groupId>
97-
<artifactId>jmh-generator-annprocess</artifactId>
98-
<scope>provided</scope>
99-
</dependency>
100-
<dependency>
101-
<groupId>ch.qos.logback</groupId>
102-
<artifactId>logback-classic</artifactId>
103-
</dependency>
104-
<dependency>
105-
<groupId>org.testng</groupId>
106-
<artifactId>testng</artifactId>
107-
<scope>test</scope>
108-
</dependency>
109-
<dependency>
110-
<groupId>org.openjdk.jmh</groupId>
111-
<artifactId>jmh-core</artifactId>
112-
<scope>test</scope>
113-
</dependency>
114-
</dependencies>
118+
115119
<profiles>
116120
<profile>
117121
<id>run-benchmarks</id>

guava/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?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/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>io.github.cowwoc.requirements</groupId>
@@ -23,6 +24,7 @@
2324
<artifactId>guava</artifactId>
2425
</dependency>
2526
</dependencies>
27+
2628
<build>
2729
<plugins>
2830
<plugin>
@@ -74,4 +76,4 @@
7476
</plugin>
7577
</plugins>
7678
</build>
77-
</project>
79+
</project>

jackson/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?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/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>io.github.cowwoc.requirements</groupId>
@@ -23,6 +24,7 @@
2324
<artifactId>jackson-databind</artifactId>
2425
</dependency>
2526
</dependencies>
27+
2628
<build>
2729
<plugins>
2830
<plugin>

java/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?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/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>io.github.cowwoc.requirements</groupId>
@@ -81,4 +82,4 @@
8182
</plugin>
8283
</plugins>
8384
</build>
84-
</project>
85+
</project>

test/pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?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/xsd/maven-4.0.0.xsd">
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/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>io.github.cowwoc.requirements</groupId>
@@ -11,8 +12,9 @@
1112

1213
<properties>
1314
<project.root.basedir>${project.parent.basedir}</project.root.basedir>
14-
<argLine />
15+
<argLine/>
1516
</properties>
17+
1618
<dependencies>
1719
<dependency>
1820
<groupId>org.assertj</groupId>
@@ -55,6 +57,7 @@
5557
<scope>test</scope>
5658
</dependency>
5759
</dependencies>
60+
5861
<build>
5962
<plugins>
6063
<plugin>
@@ -126,4 +129,4 @@
126129
</plugin>
127130
</plugins>
128131
</build>
129-
</project>
132+
</project>

0 commit comments

Comments
 (0)