Skip to content

Commit 05b7e93

Browse files
amit2103pivovarit
authored andcommitted
Bael 5247 (eugenp#4175)
* Added parent module on poms that have no parent defined * Removed dependency reduced pom from undertow module * Added new parent pom * initial clean up of child poms * Added new parent pom * [BAEL-5247] - New Parents in the tutorials repo
1 parent 2a61d64 commit 05b7e93

File tree

60 files changed

+911
-934
lines changed

Some content is hidden

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

60 files changed

+911
-934
lines changed

cdi/pom.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>parent-modules</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
11+
<artifactId>parent-spring</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../parent-spring</relativePath>
1314
</parent>
1415

1516
<dependencies>
16-
<dependency>
17-
<groupId>org.springframework</groupId>
18-
<artifactId>spring-core</artifactId>
19-
<version>${spring.version}</version>
20-
</dependency>
2117
<dependency>
2218
<groupId>org.springframework</groupId>
2319
<artifactId>spring-context</artifactId>

core-groovy/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@
2828
<artifactId>groovy-sql</artifactId>
2929
<version>${groovy-sql.version}</version>
3030
</dependency>
31-
<dependency>
32-
<groupId>org.junit.jupiter</groupId>
33-
<artifactId>junit-jupiter-engine</artifactId>
34-
<version>${junit.jupiter.version}</version>
35-
<scope>test</scope>
36-
</dependency>
3731
<dependency>
3832
<groupId>org.junit.platform</groupId>
3933
<artifactId>junit-platform-runner</artifactId>

core-java-8/pom.xml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@
99

1010
<parent>
1111
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-modules</artifactId>
13-
<version>1.0.0-SNAPSHOT</version>
12+
<artifactId>parent-java</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../parent-java</relativePath>
1415
</parent>
1516

1617
<dependencies>
17-
<!-- utils -->
18-
<dependency>
19-
<groupId>com.google.guava</groupId>
20-
<artifactId>guava</artifactId>
21-
<version>${guava.version}</version>
22-
</dependency>
2318
<dependency>
2419
<groupId>org.apache.commons</groupId>
2520
<artifactId>commons-collections4</artifactId>

core-java-collections/pom.xml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
<name>core-java-collections</name>
99

1010
<parent>
11-
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-modules</artifactId>
13-
<version>1.0.0-SNAPSHOT</version>
14-
</parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-java</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../parent-java</relativePath>
15+
</parent>
1516

1617
<dependencies>
1718
<dependency>
@@ -25,11 +26,6 @@
2526
<artifactId>collections-generic</artifactId>
2627
<version>${collections-generic.version}</version>
2728
</dependency>
28-
<dependency>
29-
<groupId>com.google.guava</groupId>
30-
<artifactId>guava</artifactId>
31-
<version>${guava.version}</version>
32-
</dependency>
3329
<dependency>
3430
<groupId>org.apache.commons</groupId>
3531
<artifactId>commons-collections4</artifactId>
@@ -55,7 +51,6 @@
5551
</dependencies>
5652

5753
<properties>
58-
<guava.version>22.0</guava.version>
5954
<commons-lang3.version>3.5</commons-lang3.version>
6055
<commons-collections4.version>4.1</commons-collections4.version>
6156
<collections-generic.version>4.01</collections-generic.version>

core-java-concurrency/pom.xml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@
99

1010
<parent>
1111
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-modules</artifactId>
13-
<version>1.0.0-SNAPSHOT</version>
12+
<artifactId>parent-java</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../parent-java</relativePath>
1415
</parent>
1516

1617
<dependencies>
17-
<!-- utils -->
18-
<dependency>
19-
<groupId>com.google.guava</groupId>
20-
<artifactId>guava</artifactId>
21-
<version>${guava.version}</version>
22-
</dependency>
2318
<dependency>
2419
<groupId>org.apache.commons</groupId>
2520
<artifactId>commons-collections4</artifactId>

core-java-io/pom.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99

1010
<parent>
1111
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-modules</artifactId>
13-
<version>1.0.0-SNAPSHOT</version>
12+
<artifactId>parent-java</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../parent-java</relativePath>
1415
</parent>
1516

1617
<dependencies>
@@ -20,11 +21,6 @@
2021
<artifactId>collections-generic</artifactId>
2122
<version>${collections-generic.version}</version>
2223
</dependency>
23-
<dependency>
24-
<groupId>com.google.guava</groupId>
25-
<artifactId>guava</artifactId>
26-
<version>${guava.version}</version>
27-
</dependency>
2824
<dependency>
2925
<groupId>org.apache.commons</groupId>
3026
<artifactId>commons-collections4</artifactId>

core-java-sun/pom.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>parent-modules</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
11+
<artifactId>parent-java</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../parent-java</relativePath>
1314
</parent>
1415

1516
<dependencies>
@@ -19,11 +20,6 @@
1920
<artifactId>collections-generic</artifactId>
2021
<version>${collections-generic.version}</version>
2122
</dependency>
22-
<dependency>
23-
<groupId>com.google.guava</groupId>
24-
<artifactId>guava</artifactId>
25-
<version>${guava.version}</version>
26-
</dependency>
2723
<dependency>
2824
<groupId>org.apache.commons</groupId>
2925
<artifactId>commons-collections4</artifactId>

core-java/pom.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,12 @@
99

1010
<parent>
1111
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-modules</artifactId>
13-
<version>1.0.0-SNAPSHOT</version>
12+
<artifactId>parent-java</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../parent-java</relativePath>
1415
</parent>
1516

1617
<dependencies>
17-
<!-- utils -->
18-
<dependency>
19-
<groupId>com.google.guava</groupId>
20-
<artifactId>guava</artifactId>
21-
<version>${guava.version}</version>
22-
</dependency>
2318
<dependency>
2419
<groupId>commons-io</groupId>
2520
<artifactId>commons-io</artifactId>
@@ -438,7 +433,6 @@
438433
<log4j.version>1.2.17</log4j.version>
439434

440435
<!-- util -->
441-
<guava.version>22.0</guava.version>
442436
<commons-lang3.version>3.5</commons-lang3.version>
443437
<bouncycastle.version>1.55</bouncycastle.version>
444438
<commons-codec.version>1.10</commons-codec.version>

core-kotlin/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@
2525
<artifactId>commons-math3</artifactId>
2626
<version>${commons-math3.version}</version>
2727
</dependency>
28-
<dependency>
29-
<groupId>org.junit.jupiter</groupId>
30-
<artifactId>junit-jupiter-engine</artifactId>
31-
<version>${junit.jupiter.version}</version>
32-
<scope>test</scope>
33-
</dependency>
3428
<dependency>
3529
<groupId>org.junit.platform</groupId>
3630
<artifactId>junit-platform-runner</artifactId>

drools/pom.xml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
<artifactId>drools</artifactId>
66

77
<parent>
8-
<groupId>com.baeldung</groupId>
9-
<artifactId>parent-modules</artifactId>
10-
<version>1.0.0-SNAPSHOT</version>
11-
</parent>
8+
<groupId>com.baeldung</groupId>
9+
<artifactId>parent-spring</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>../parent-spring</relativePath>
12+
</parent>
1213

1314
<dependencies>
1415
<dependency>
@@ -47,18 +48,13 @@
4748
<artifactId>poi-ooxml</artifactId>
4849
<version>${apache-poi-version}</version>
4950
</dependency>
50-
<dependency>
51-
<groupId>org.springframework</groupId>
52-
<artifactId>spring-core</artifactId>
53-
<version>${spring-core.version}</version>
54-
</dependency>
5551
</dependencies>
5652

5753
<properties>
5854
<http-component-version>4.4.6</http-component-version>
5955
<drools-version>7.4.1.Final</drools-version>
6056
<apache-poi-version>3.13</apache-poi-version>
61-
<spring-core.version>4.3.6.RELEASE</spring-core.version>
57+
<spring.version>4.3.6.RELEASE</spring.version>
6258
</properties>
6359

6460
</project>

gson/pom.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>parent-modules</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
11+
<artifactId>parent-java</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../parent-java</relativePath>
1314
</parent>
1415

1516
<dependencies>
@@ -19,11 +20,6 @@
1920
<artifactId>joda-time</artifactId>
2021
<version>${joda-time.version}</version>
2122
</dependency>
22-
<dependency>
23-
<groupId>com.google.guava</groupId>
24-
<artifactId>guava</artifactId>
25-
<version>${guava.version}</version>
26-
</dependency>
2723
<dependency>
2824
<groupId>commons-io</groupId>
2925
<artifactId>commons-io</artifactId>

guava-modules/guava-18/pom.xml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,11 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>parent-modules</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
13-
<relativePath>../../</relativePath>
11+
<artifactId>parent-java</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../../parent-java</relativePath>
1414
</parent>
1515

16-
<dependencies>
17-
<dependency>
18-
<groupId>com.google.guava</groupId>
19-
<artifactId>guava</artifactId>
20-
<version>${guava.version}</version>
21-
</dependency>
22-
</dependencies>
23-
2416
<properties>
2517
<guava.version>18.0</guava.version>
2618
</properties>

guava-modules/guava-19/pom.xml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,11 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>parent-modules</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
13-
<relativePath>../../</relativePath>
11+
<artifactId>parent-java</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../../parent-java</relativePath>
1414
</parent>
1515

16-
<dependencies>
17-
<dependency>
18-
<groupId>com.google.guava</groupId>
19-
<artifactId>guava</artifactId>
20-
<version>${guava.version}</version>
21-
</dependency>
22-
</dependencies>
23-
2416
<properties>
2517
<guava.version>19.0</guava.version>
2618
</properties>

guava-modules/guava-21/pom.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,12 @@
77

88
<parent>
99
<groupId>com.baeldung</groupId>
10-
<artifactId>parent-modules</artifactId>
11-
<version>1.0.0-SNAPSHOT</version>
12-
<relativePath>../../</relativePath>
10+
<artifactId>parent-java</artifactId>
11+
<version>0.0.1-SNAPSHOT</version>
12+
<relativePath>../../parent-java</relativePath>
1313
</parent>
1414

1515
<dependencies>
16-
<dependency>
17-
<groupId>com.google.guava</groupId>
18-
<artifactId>guava</artifactId>
19-
<version>${guava.version}</version>
20-
</dependency>
21-
2216
<dependency>
2317
<groupId>org.jooq</groupId>
2418
<artifactId>jool</artifactId>

guava/pom.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,13 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>parent-modules</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
11+
<artifactId>parent-java</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../parent-java</relativePath>
1314
</parent>
1415

1516
<dependencies>
1617
<!-- utils -->
17-
<dependency>
18-
<groupId>com.google.guava</groupId>
19-
<artifactId>guava</artifactId>
20-
<version>${guava.version}</version>
21-
</dependency>
2218
<dependency>
2319
<groupId>org.apache.commons</groupId>
2420
<artifactId>commons-collections4</artifactId>

guest/junit5-example/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
1111
<relativePath>../../</relativePath>
1212
</parent>
1313
<dependencies>
14-
<dependency>
15-
<groupId>org.junit.jupiter</groupId>
16-
<artifactId>junit-jupiter-engine</artifactId>
17-
<version>5.0.0-M4</version>
18-
</dependency>
1914
<dependency>
2015
<groupId>org.junit.jupiter</groupId>
2116
<artifactId>junit-jupiter-params</artifactId>
@@ -62,4 +57,8 @@
6257
</plugin>
6358
</plugins>
6459
</build>
60+
61+
<properties>
62+
63+
</properties>
6564
</project>

handling-spring-static-resources/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010

1111
<parent>
1212
<groupId>com.baeldung</groupId>
13-
<artifactId>parent-modules</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
13+
<artifactId>parent-spring</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<relativePath>../parent-spring</relativePath>
1516
</parent>
1617

1718
<dependencies>

0 commit comments

Comments
 (0)