Skip to content

Commit 150dbd1

Browse files
committed
JAVA-9022: Fix formatting of POMs
1 parent 0711cec commit 150dbd1

97 files changed

Lines changed: 392 additions & 412 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.

aws-lambda/shipping-tracker/ShippingFunction/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<groupId>com.baeldung</groupId>
66
<artifactId>ShippingFunction</artifactId>
77
<version>1.0</version>
8-
<packaging>jar</packaging>
98
<name>ShippingFunction</name>
9+
<packaging>jar</packaging>
1010

1111
<dependencies>
1212
<dependency>

aws-lambda/todo-reminder/ToDoFunction/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<groupId>helloworld</groupId>
66
<artifactId>ToDoFunction</artifactId>
77
<version>1.0</version>
8-
<packaging>jar</packaging>
98
<name>ToDoFunction</name>
9+
<packaging>jar</packaging>
1010

1111
<dependencies>
1212
<dependency>

core-java-modules/core-java-11/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<groupId>com.baeldung</groupId>
1414
<artifactId>parent-modules</artifactId>
1515
<version>1.0.0-SNAPSHOT</version>
16-
1716
<relativePath>../../pom.xml</relativePath>
1817
</parent>
1918

core-java-modules/core-java-9-streams/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<groupId>com.baeldung.core-java-modules</groupId>
1313
<artifactId>core-java-modules</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
15-
<relativePath>../</relativePath>
1615
</parent>
1716

1817
<build>
Lines changed: 41 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,48 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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-
<modelVersion>4.0.0</modelVersion>
6-
<artifactId>core-java-collections-maps-4</artifactId>
7-
<version>0.1.0-SNAPSHOT</version>
8-
<name>core-java-collections-maps-4</name>
9-
<packaging>jar</packaging>
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+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>core-java-collections-maps-4</artifactId>
7+
<version>0.1.0-SNAPSHOT</version>
8+
<name>core-java-collections-maps-4</name>
9+
<packaging>jar</packaging>
1010

11-
<parent>
12-
<groupId>com.baeldung.core-java-modules</groupId>
13-
<artifactId>core-java-modules</artifactId>
14-
<version>0.0.1-SNAPSHOT</version>
15-
<relativePath>../pom.xml</relativePath>
16-
</parent>
17-
18-
<properties>
19-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20-
<maven.compiler.source>1.8</maven.compiler.source>
21-
<maven.compiler.target>1.8</maven.compiler.target>
22-
</properties>
11+
<parent>
12+
<groupId>com.baeldung.core-java-modules</groupId>
13+
<artifactId>core-java-modules</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
</parent>
2316

24-
<dependencies>
25-
<dependency>
26-
<groupId>junit</groupId>
27-
<artifactId>junit</artifactId>
28-
<version>${junit.version}</version>
29-
<scope>test</scope>
30-
</dependency>
31-
</dependencies>
17+
<dependencies>
18+
<dependency>
19+
<groupId>junit</groupId>
20+
<artifactId>junit</artifactId>
21+
<version>${junit.version}</version>
22+
<scope>test</scope>
23+
</dependency>
24+
</dependencies>
3225

33-
<build>
34-
<pluginManagement>
35-
<plugins>
36-
<plugin>
37-
<groupId>org.apache.maven.plugins</groupId>
38-
<artifactId>maven-surefire-plugin</artifactId>
39-
<version>3.0.0-M5</version>
40-
<configuration>
41-
<!-- those tests are not made for CI purposes, but for manual testing -->
42-
<groups>!performance</groups>
43-
</configuration>
44-
</plugin>
45-
</plugins>
46-
</pluginManagement>
47-
</build>
26+
<build>
27+
<pluginManagement>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-surefire-plugin</artifactId>
32+
<version>3.0.0-M5</version>
33+
<configuration>
34+
<!-- those tests are not made for CI purposes, but for manual testing -->
35+
<groups>!performance</groups>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</pluginManagement>
40+
</build>
41+
42+
<properties>
43+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44+
<maven.compiler.source>1.8</maven.compiler.source>
45+
<maven.compiler.target>1.8</maven.compiler.target>
46+
</properties>
4847

4948
</project>

core-java-modules/core-java-datetime-conversion/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<groupId>com.baeldung.core-java-modules</groupId>
1313
<artifactId>core-java-modules</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
15-
<relativePath>../</relativePath>
1615
</parent>
1716

1817
<dependencies>

core-java-modules/core-java-jvm-2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
<guava.version>31.0.1-jre</guava.version>
3939
</properties>
4040

41-
</project>
41+
</project>

core-java-modules/core-java-lang-oop-methods/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
65
<modelVersion>4.0.0</modelVersion>
76
<artifactId>core-java-lang-oop-methods</artifactId>
87
<name>core-java-lang-oop-methods</name>

core-java-modules/core-java-lang-oop-modifiers/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@
2525
<properties>
2626
<h2.version>1.4.197</h2.version> <!-- needs to be specified as it fails with parent's 1.4.200 -->
2727
</properties>
28+
2829
</project>

core-java-modules/core-java-os/pom.xml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -14,44 +14,44 @@
1414
<version>0.0.1-SNAPSHOT</version>
1515
</parent>
1616

17-
<dependencies>
18-
<dependency>
19-
<groupId>org.apache.commons</groupId>
20-
<artifactId>commons-collections4</artifactId>
21-
<version>${commons-collections4.version}</version>
22-
</dependency>
23-
<dependency>
24-
<groupId>commons-io</groupId>
25-
<artifactId>commons-io</artifactId>
26-
<version>${commons-io.version}</version>
27-
</dependency>
28-
<dependency>
29-
<groupId>org.apache.commons</groupId>
30-
<artifactId>commons-lang3</artifactId>
31-
<version>${commons-lang3.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>log4j</groupId>
35-
<artifactId>log4j</artifactId>
36-
<version>${log4j.version}</version>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.unix4j</groupId>
40-
<artifactId>unix4j-command</artifactId>
41-
<version>${unix4j.version}</version>
42-
</dependency>
43-
<dependency>
44-
<groupId>com.googlecode.grep4j</groupId>
45-
<artifactId>grep4j</artifactId>
46-
<version>${grep4j.version}</version>
47-
</dependency>
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.apache.commons</groupId>
20+
<artifactId>commons-collections4</artifactId>
21+
<version>${commons-collections4.version}</version>
22+
</dependency>
23+
<dependency>
24+
<groupId>commons-io</groupId>
25+
<artifactId>commons-io</artifactId>
26+
<version>${commons-io.version}</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.apache.commons</groupId>
30+
<artifactId>commons-lang3</artifactId>
31+
<version>${commons-lang3.version}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>log4j</groupId>
35+
<artifactId>log4j</artifactId>
36+
<version>${log4j.version}</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.unix4j</groupId>
40+
<artifactId>unix4j-command</artifactId>
41+
<version>${unix4j.version}</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.googlecode.grep4j</groupId>
45+
<artifactId>grep4j</artifactId>
46+
<version>${grep4j.version}</version>
47+
</dependency>
4848
<dependency>
4949
<groupId>org.projectlombok</groupId>
5050
<artifactId>lombok</artifactId>
5151
<version>${lombok.version}</version>
5252
<scope>provided</scope>
5353
</dependency>
54-
</dependencies>
54+
</dependencies>
5555

5656
<build>
5757
<finalName>core-java-os</finalName>
@@ -85,4 +85,4 @@
8585
<lombok.version>1.18.22</lombok.version>
8686
</properties>
8787

88-
</project>
88+
</project>

0 commit comments

Comments
 (0)