Skip to content

Commit f2128ad

Browse files
amit2103pivovarit
authored andcommitted
Bael 5249 cleanup (eugenp#4108)
* Added parent module on poms that have no parent defined * Removed dependency reduced pom from undertow module * [BAEL-5249] - 21.02 - pom cleanup - formatted pom.xml
1 parent 3998fff commit f2128ad

File tree

417 files changed

+18442
-18443
lines changed

Some content is hidden

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

417 files changed

+18442
-18443
lines changed

JGit/pom.xml

+33-33
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,41 @@
1212
<artifactId>parent-modules</artifactId>
1313
<version>1.0.0-SNAPSHOT</version>
1414
</parent>
15-
15+
1616
<repositories>
17-
<repository>
18-
<id>jgit-repository</id>
19-
<url>https://repo.eclipse.org/content/groups/releases/</url>
20-
</repository>
21-
</repositories>
17+
<repository>
18+
<id>jgit-repository</id>
19+
<url>https://repo.eclipse.org/content/groups/releases/</url>
20+
</repository>
21+
</repositories>
22+
23+
<!-- Core Library -->
24+
<dependencies>
25+
<dependency>
26+
<groupId>org.eclipse.jgit</groupId>
27+
<artifactId>org.eclipse.jgit</artifactId>
28+
<version>${org.eclipse.jgit.version}</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.eclipse.jgit</groupId>
32+
<artifactId>org.eclipse.jgit.archive</artifactId>
33+
<version>${org.eclipse.jgit.version}</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>commons-io</groupId>
37+
<artifactId>commons-io</artifactId>
38+
<version>${commons-io.version}</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.slf4j</groupId>
42+
<artifactId>slf4j-simple</artifactId>
43+
<version>${org.slf4j.version}</version>
44+
</dependency>
45+
</dependencies>
2246

23-
<!-- Core Library -->
24-
<dependencies>
25-
<dependency>
26-
<groupId>org.eclipse.jgit</groupId>
27-
<artifactId>org.eclipse.jgit</artifactId>
28-
<version>${org.eclipse.jgit.version}</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>org.eclipse.jgit</groupId>
32-
<artifactId>org.eclipse.jgit.archive</artifactId>
33-
<version>${org.eclipse.jgit.version}</version>
34-
</dependency>
35-
<dependency>
36-
<groupId>commons-io</groupId>
37-
<artifactId>commons-io</artifactId>
38-
<version>${commons-io.version}</version>
39-
</dependency>
40-
<dependency>
41-
<groupId>org.slf4j</groupId>
42-
<artifactId>slf4j-simple</artifactId>
43-
<version>${org.slf4j.version}</version>
44-
</dependency>
45-
</dependencies>
46-
47-
<properties>
47+
<properties>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49-
<org.eclipse.jgit.version>4.5.0.201609210915-r</org.eclipse.jgit.version>
49+
<org.eclipse.jgit.version>4.5.0.201609210915-r</org.eclipse.jgit.version>
5050
</properties>
51-
51+
5252
</project>

Twitter4J/pom.xml

+41-41
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
<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/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.mabsisa</groupId>
5-
<artifactId>Twitter4J</artifactId>
6-
<packaging>jar</packaging>
7-
<version>1.0-SNAPSHOT</version>
8-
<name>Twitter4J</name>
9-
<url>http://maven.apache.org</url>
10-
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.mabsisa</groupId>
5+
<artifactId>Twitter4J</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.0-SNAPSHOT</version>
8+
<name>Twitter4J</name>
9+
<url>http://maven.apache.org</url>
10+
1111
<parent>
1212
<groupId>com.baeldung</groupId>
1313
<artifactId>parent-modules</artifactId>
1414
<version>1.0.0-SNAPSHOT</version>
15-
</parent>
16-
17-
<properties>
18-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20-
<java.version>1.8</java.version>
21-
</properties>
15+
</parent>
16+
17+
<properties>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20+
<java.version>1.8</java.version>
21+
</properties>
2222

2323
<dependencies>
24-
<dependency>
25-
<groupId>org.twitter4j</groupId>
26-
<artifactId>twitter4j-stream</artifactId>
27-
<version>4.0.6</version>
28-
</dependency>
24+
<dependency>
25+
<groupId>org.twitter4j</groupId>
26+
<artifactId>twitter4j-stream</artifactId>
27+
<version>4.0.6</version>
28+
</dependency>
2929
</dependencies>
30-
30+
3131
<build>
32-
<finalName>${project.artifactId}</finalName>
33-
<resources>
34-
<resource>
35-
<directory>src/main/resources</directory>
36-
</resource>
37-
</resources>
38-
<plugins>
39-
<plugin>
40-
<groupId>org.apache.maven.plugins</groupId>
41-
<artifactId>maven-surefire-plugin</artifactId>
42-
<version>${maven-surefire-plugin.version}</version>
43-
<configuration>
44-
<excludes>
45-
<exclude>**/ApplicationTest.java</exclude>
46-
</excludes>
47-
</configuration>
48-
</plugin>
49-
</plugins>
50-
</build>
32+
<finalName>${project.artifactId}</finalName>
33+
<resources>
34+
<resource>
35+
<directory>src/main/resources</directory>
36+
</resource>
37+
</resources>
38+
<plugins>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-surefire-plugin</artifactId>
42+
<version>${maven-surefire-plugin.version}</version>
43+
<configuration>
44+
<excludes>
45+
<exclude>**/ApplicationTest.java</exclude>
46+
</excludes>
47+
</configuration>
48+
</plugin>
49+
</plugins>
50+
</build>
5151

5252
</project>

activejdbc/pom.xml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<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">
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.baeldung</groupId>
55
<artifactId>activejdbc</artifactId>
66
<version>1.0-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>activejdbc</name>
99
<url>http://maven.apache.org</url>
10-
11-
<parent>
10+
11+
<parent>
1212
<artifactId>parent-modules</artifactId>
1313
<groupId>com.baeldung</groupId>
1414
<version>1.0.0-SNAPSHOT</version>
1515
</parent>
16-
17-
<dependencies>
16+
17+
<dependencies>
1818
<dependency>
1919
<groupId>junit</groupId>
2020
<artifactId>junit</artifactId>
@@ -43,7 +43,7 @@
4343
<version>${org.slf4j.version}</version>
4444
</dependency>
4545
</dependencies>
46-
46+
4747
<build>
4848
<plugins>
4949
<plugin>
@@ -118,7 +118,7 @@
118118
</snapshots>
119119
</repository>
120120
</repositories>
121-
121+
122122
<pluginRepositories>
123123
<pluginRepository>
124124
<id>snapshots2</id>
@@ -131,13 +131,13 @@
131131
</snapshots>
132132
</pluginRepository>
133133
</pluginRepositories>
134-
135-
<properties>
134+
135+
<properties>
136136
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
137137
<activejdbc.version>1.4.13</activejdbc.version>
138138
<environments>development.test,development</environments>
139-
<org.slf4j.version>1.7.9</org.slf4j.version>
140-
<mysql.connector.version>5.1.34</mysql.connector.version>
139+
<org.slf4j.version>1.7.9</org.slf4j.version>
140+
<mysql.connector.version>5.1.34</mysql.connector.version>
141141
</properties>
142-
142+
143143
</project>

akka-streams/pom.xml

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
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">
4-
<modelVersion>4.0.0</modelVersion>
5-
<artifactId>akka-streams</artifactId>
6-
<name>akka-streams</name>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>akka-streams</artifactId>
6+
<name>akka-streams</name>
77

8-
<parent>
9-
<artifactId>parent-modules</artifactId>
10-
<groupId>com.baeldung</groupId>
11-
<version>1.0.0-SNAPSHOT</version>
12-
</parent>
8+
<parent>
9+
<artifactId>parent-modules</artifactId>
10+
<groupId>com.baeldung</groupId>
11+
<version>1.0.0-SNAPSHOT</version>
12+
</parent>
1313

14-
<dependencies>
15-
<dependency>
16-
<groupId>com.typesafe.akka</groupId>
17-
<artifactId>akka-stream_2.11</artifactId>
18-
<version>${akkastreams.version}</version>
19-
</dependency>
20-
<dependency>
21-
<groupId>com.typesafe.akka</groupId>
22-
<artifactId>akka-stream-testkit_2.11</artifactId>
23-
<version>${akkastreams.version}</version>
24-
</dependency>
25-
</dependencies>
14+
<dependencies>
15+
<dependency>
16+
<groupId>com.typesafe.akka</groupId>
17+
<artifactId>akka-stream_2.11</artifactId>
18+
<version>${akkastreams.version}</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>com.typesafe.akka</groupId>
22+
<artifactId>akka-stream-testkit_2.11</artifactId>
23+
<version>${akkastreams.version}</version>
24+
</dependency>
25+
</dependencies>
2626

27-
<properties>
28-
<akkastreams.version>2.5.2</akkastreams.version>
29-
</properties>
27+
<properties>
28+
<akkastreams.version>2.5.2</akkastreams.version>
29+
</properties>
3030

3131
</project>

0 commit comments

Comments
 (0)