Skip to content

Commit 8193ddf

Browse files
authored
JAVA-32170_M_02: Changes made for Fix formatting of POMs (#16117)
1 parent de699e2 commit 8193ddf

File tree

25 files changed

+34
-38
lines changed

25 files changed

+34
-38
lines changed

maven-modules/maven-reactor/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>maven-reactor</artifactId>
77
<version>1.0-SNAPSHOT</version>
8-
<name>maven-reactor</name>
98
<packaging>pom</packaging>
9+
<name>maven-reactor</name>
1010
<description>Sample multi-module project to explain maven reactor</description>
1111

1212
<parent>

maven-modules/maven-repositories/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>maven-repositories</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
8-
<name>maven-repositories</name>
98
<packaging>pom</packaging>
9+
<name>maven-repositories</name>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>

maven-modules/maven-simple/parent-project/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>parent-project</artifactId>
77
<version>1.0-SNAPSHOT</version>
8-
<name>parent-project</name>
98
<packaging>pom</packaging>
9+
<name>parent-project</name>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>

maven-modules/maven-simple/parent-project/webapp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>webapp</artifactId>
7-
<name>webapp</name>
87
<packaging>war</packaging>
8+
<name>webapp</name>
99

1010
<parent>
1111
<artifactId>parent-project</artifactId>

maven-modules/maven-simple/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>maven-simple</artifactId>
7-
<name>maven-simple</name>
87
<version>1.0.0-SNAPSHOT</version>
98
<packaging>pom</packaging>
9+
<name>maven-simple</name>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>

maven-modules/maven-surefire-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>maven-surefire-plugin</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
8-
<name>maven-surefire-plugin</name>
98
<packaging>jar</packaging>
9+
<name>maven-surefire-plugin</name>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>

maven-modules/maven-war-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<groupId>com.baeldung</groupId>
77
<artifactId>maven-war-plugin</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
9-
<name>maven-war-plugin</name>
109
<packaging>war</packaging>
10+
<name>maven-war-plugin</name>
1111

1212
<build>
1313
<plugins>

maven-modules/multimodulemavenproject/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<groupId>com.baeldung.multimodulemavenproject</groupId>
77
<artifactId>multimodulemavenproject</artifactId>
88
<version>1.0</version>
9-
<name>multimodulemavenproject</name>
109
<packaging>pom</packaging>
10+
<name>multimodulemavenproject</name>
1111

1212
<!--
1313
No <parent> tag since we want the compiler plugin defined

maven-modules/resume-from/business/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
<artifactId>business</artifactId>
77
<version>1.0-SNAPSHOT</version>
88
<name>business</name>
9+
910
<parent>
1011
<groupId>com.baeldung</groupId>
1112
<artifactId>resume-from</artifactId>
1213
<version>1.0-SNAPSHOT</version>
1314
</parent>
15+
1416
<dependencies>
1517
<dependency>
1618
<groupId>com.baeldung</groupId>

maven-modules/resume-from/lib/pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
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+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>lib</artifactId>
77
<version>1.0-SNAPSHOT</version>
88
<name>lib</name>
9+
910
<parent>
1011
<groupId>com.baeldung</groupId>
1112
<artifactId>resume-from</artifactId>

maven-modules/resume-from/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<groupId>com.baeldung</groupId>
77
<artifactId>resume-from</artifactId>
88
<version>1.0-SNAPSHOT</version>
9-
<name>resume-from</name>
109
<packaging>pom</packaging>
10+
<name>resume-from</name>
1111

1212
<modules>
1313
<module>business</module>

maven-modules/spring-bom/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
</dependency>
2626
</dependencies>
2727
</dependencyManagement>
28+
2829
<dependencies>
2930
<dependency>
3031
<groupId>org.springframework</groupId>

maven-modules/versions-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>versions-maven-plugin</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
8-
<name>versions-maven-plugin</name>
98
<packaging>pom</packaging>
9+
<name>versions-maven-plugin</name>
1010

1111
<parent>
1212
<artifactId>maven-modules</artifactId>

messaging-modules/apache-camel/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.baeldung.apache.camel</groupId>
77
<artifactId>apache-camel</artifactId>
8-
<name>apache-camel</name>
98
<packaging>jar</packaging>
9+
<name>apache-camel</name>
1010
<url>http://maven.apache.org</url>
1111

1212
<parent>

messaging-modules/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>messaging-modules</artifactId>
7-
<name>messaging-modules</name>
87
<packaging>pom</packaging>
8+
<name>messaging-modules</name>
99

1010
<parent>
1111
<artifactId>parent-boot-3</artifactId>

messaging-modules/spring-apache-camel/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.baeldung.apache.camel</groupId>
77
<artifactId>spring-apache-camel</artifactId>
8-
<name>spring-apache-camel</name>
98
<packaging>jar</packaging>
9+
<name>spring-apache-camel</name>
1010
<url>http://maven.apache.org</url>
1111

1212
<parent>

messaging-modules/spring-jms/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>spring-jms</artifactId>
7-
<name>spring-jms</name>
87
<packaging>war</packaging>
8+
<name>spring-jms</name>
99
<description>Introduction to Spring JMS</description>
1010

1111
<parent>

microservices-modules/event-driven-microservice/pom.xml

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
45
<modelVersion>4.0.0</modelVersion>
6+
<groupId>io.orkes.demo</groupId>
7+
<artifactId>event-driven-microservice</artifactId>
8+
<version>0.1</version>
9+
<name>event-driven-microservice</name>
10+
<description>Demo Project for Orkes Conductor on Spring Boot</description>
511

612
<parent>
713
<groupId>org.springframework.boot</groupId>
@@ -10,39 +16,26 @@
1016
<relativePath/> <!-- lookup parent from repository -->
1117
</parent>
1218

13-
<groupId>io.orkes.demo</groupId>
14-
<artifactId>event-driven-microservice</artifactId>
15-
<version>0.1</version>
16-
17-
<name>event-driven-microservice</name>
18-
<description>Demo Project for Orkes Conductor on Spring Boot</description>
19-
20-
2119
<dependencies>
22-
2320
<dependency>
2421
<groupId>org.springframework.boot</groupId>
2522
<artifactId>spring-boot-starter-web</artifactId>
2623
</dependency>
27-
2824
<dependency>
2925
<groupId>io.orkes.conductor</groupId>
3026
<artifactId>orkes-conductor-client</artifactId>
3127
<version>${conductor.client.version}</version>
3228
</dependency>
33-
3429
<dependency>
3530
<groupId>org.springdoc</groupId>
3631
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
3732
<version>${springdoc-openapi-webmvc-ui.version}</version>
3833
</dependency>
39-
4034
<dependency>
4135
<groupId>org.projectlombok</groupId>
4236
<artifactId>lombok</artifactId>
4337
<optional>true</optional>
4438
</dependency>
45-
4639
<dependency>
4740
<groupId>org.springframework.boot</groupId>
4841
<artifactId>spring-boot-starter-test</artifactId>

microservices-modules/helidon/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.baeldung.helidon</groupId>
77
<artifactId>helidon</artifactId>
8-
<name>helidon</name>
98
<packaging>pom</packaging>
9+
<name>helidon</name>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>

microservices-modules/micronaut/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<groupId>com.baeldung.micronaut</groupId>
77
<artifactId>micronaut</artifactId>
88
<version>0.1</version>
9-
<name>micronaut</name>
109
<packaging>${packaging}</packaging>
10+
<name>micronaut</name>
1111

1212
<parent>
1313
<groupId>com.baeldung</groupId>

microservices-modules/microprofile/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>microprofile</artifactId>
77
<version>1.0-SNAPSHOT</version>
8-
<name>microprofile</name>
98
<packaging>war</packaging>
9+
<name>microprofile</name>
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>

microservices-modules/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>microservices-modules</artifactId>
7-
<name>microservices-modules</name>
87
<packaging>pom</packaging>
8+
<name>microservices-modules</name>
99

1010
<parent>
1111
<groupId>com.baeldung</groupId>

microservices-modules/rest-express/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>rest-express</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
8-
<name>rest-express</name>
98
<packaging>jar</packaging>
9+
<name>rest-express</name>
1010
<description>A Basic, MongoDB-backed Service Suite</description>
1111
<url>https://github.com/RestExpress/RestExpress-Scaffold</url>
1212
<!--

muleesb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<groupId>com.mycompany</groupId>
77
<artifactId>muleesb</artifactId>
88
<version>1.0.0-SNAPSHOT</version>
9-
<name>muleesb</name>
109
<packaging>mule</packaging>
10+
<name>muleesb</name>
1111

1212
<parent>
1313
<groupId>com.baeldung</groupId>

mybatis/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
<groupId>com.h2database</groupId>
2323
<artifactId>h2</artifactId>
2424
<version>${h2database.version}</version>
25-
2625
</dependency>
2726
</dependencies>
2827

0 commit comments

Comments
 (0)