Skip to content

Commit 2f7e94b

Browse files
[BAEL-18783] - Fix formatting of POMs
1 parent 4394a14 commit 2f7e94b

780 files changed

Lines changed: 6325 additions & 6094 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

akka-http/pom.xml

Lines changed: 41 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,46 @@
1-
<?xml version="1.0"?>
2-
<project
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4-
xmlns="http://maven.apache.org/POM/4.0.0"
5-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>akka-http</artifactId>
7+
<name>akka-http</name>
68

7-
<modelVersion>4.0.0</modelVersion>
8-
<artifactId>akka-http</artifactId>
9-
<name>akka-http</name>
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
1014

11-
<parent>
12-
<artifactId>parent-modules</artifactId>
13-
<groupId>com.baeldung</groupId>
14-
<version>1.0.0-SNAPSHOT</version>
15-
</parent>
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.typesafe.akka</groupId>
18+
<artifactId>akka-http_2.12</artifactId>
19+
<version>${akka.http.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.typesafe.akka</groupId>
23+
<artifactId>akka-stream_2.12</artifactId>
24+
<version>${akka.stream.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.typesafe.akka</groupId>
28+
<artifactId>akka-http-jackson_2.12</artifactId>
29+
<version>${akka.http.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.typesafe.akka</groupId>
33+
<artifactId>akka-http-testkit_2.12</artifactId>
34+
<version>${akka.http.version}</version>
35+
<scope>test</scope>
36+
</dependency>
37+
</dependencies>
1638

17-
<dependencies>
18-
<dependency>
19-
<groupId>com.typesafe.akka</groupId>
20-
<artifactId>akka-http_2.12</artifactId>
21-
<version>${akka.http.version}</version>
22-
</dependency>
23-
<dependency>
24-
<groupId>com.typesafe.akka</groupId>
25-
<artifactId>akka-stream_2.12</artifactId>
26-
<version>${akka.stream.version}</version>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.typesafe.akka</groupId>
30-
<artifactId>akka-http-jackson_2.12</artifactId>
31-
<version>${akka.http.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>com.typesafe.akka</groupId>
35-
<artifactId>akka-http-testkit_2.12</artifactId>
36-
<version>${akka.http.version}</version>
37-
<scope>test</scope>
38-
</dependency>
39-
</dependencies>
39+
<properties>
40+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
42+
<akka.http.version>10.0.11</akka.http.version>
43+
<akka.stream.version>2.5.11</akka.stream.version>
44+
</properties>
4045

41-
<properties>
42-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
44-
<akka.http.version>10.0.11</akka.http.version>
45-
<akka.stream.version>2.5.11</akka.stream.version>
46-
</properties>
4746
</project>

akka-streams/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>akka-streams</artifactId>
66
<name>akka-streams</name>
77

88
<parent>
9-
<artifactId>parent-modules</artifactId>
109
<groupId>com.baeldung</groupId>
10+
<artifactId>parent-modules</artifactId>
1111
<version>1.0.0-SNAPSHOT</version>
1212
</parent>
1313

algorithms-genetic/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-genetic</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
67
<name>algorithms-genetic</name>
7-
8+
89
<parent>
910
<groupId>com.baeldung</groupId>
1011
<artifactId>parent-modules</artifactId>
@@ -60,5 +61,4 @@
6061
<commons-codec.version>1.11</commons-codec.version>
6162
</properties>
6263

63-
6464
</project>

algorithms-miscellaneous-1/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-miscellaneous-1</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
67
<name>algorithms-miscellaneous-1</name>
7-
8+
89
<parent>
910
<groupId>com.baeldung</groupId>
1011
<artifactId>parent-modules</artifactId>
@@ -43,7 +44,7 @@
4344
<groupId>com.github.dpaukov</groupId>
4445
<artifactId>combinatoricslib3</artifactId>
4546
<version>${combinatoricslib3.version}</version>
46-
</dependency>
47+
</dependency>
4748
</dependencies>
4849

4950
<build>

algorithms-miscellaneous-2/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-miscellaneous-2</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
@@ -34,9 +35,9 @@
3435
<version>${org.jgrapht.core.version}</version>
3536
</dependency>
3637
<dependency>
37-
<groupId>org.jgrapht</groupId>
38-
<artifactId>jgrapht-ext</artifactId>
39-
<version>${org.jgrapht.ext.version}</version>
38+
<groupId>org.jgrapht</groupId>
39+
<artifactId>jgrapht-ext</artifactId>
40+
<version>${org.jgrapht.ext.version}</version>
4041
</dependency>
4142
<dependency>
4243
<groupId>pl.allegro.finance</groupId>

algorithms-miscellaneous-3/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
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>
@@ -91,4 +92,5 @@
9192
<jmh-core.version>1.19</jmh-core.version>
9293
<jmh-generator.version>1.19</jmh-generator.version>
9394
</properties>
95+
9496
</project>

algorithms-miscellaneous-4/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-miscellaneous-4</artifactId>
56
<version>0.0.1-SNAPSHOT</version>
67
<name>algorithms-miscellaneous-4</name>
7-
8+
89
<parent>
910
<groupId>com.baeldung</groupId>
1011
<artifactId>parent-modules</artifactId>

algorithms-miscellaneous-5/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-miscellaneous-5</artifactId>
56
<version>0.0.1-SNAPSHOT</version>

algorithms-searching/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-searching</artifactId>
56
<version>0.0.1-SNAPSHOT</version>

algorithms-sorting/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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/xsd/maven-4.0.0.xsd">
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
<artifactId>algorithms-sorting</artifactId>
56
<version>0.0.1-SNAPSHOT</version>

0 commit comments

Comments
 (0)