Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 05b7e93

Browse filesBrowse 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
Copy full SHA for 05b7e93

File tree

Expand file treeCollapse file tree

60 files changed

+911
-934
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

60 files changed

+911
-934
lines changed
Open diff view settings
Collapse file

‎cdi/pom.xml‎

Copy file name to clipboardExpand all lines: cdi/pom.xml
+3-7Lines 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>
Collapse file

‎core-groovy/pom.xml‎

Copy file name to clipboardExpand all lines: core-groovy/pom.xml
-6Lines 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>
Collapse file

‎core-java-8/pom.xml‎

Copy file name to clipboardExpand all lines: core-java-8/pom.xml
+3-8Lines 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>
Collapse file

‎core-java-collections/pom.xml‎

Copy file name to clipboardExpand all lines: core-java-collections/pom.xml
+5-10Lines 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>
Collapse file

‎core-java-concurrency/pom.xml‎

Copy file name to clipboardExpand all lines: core-java-concurrency/pom.xml
+3-8Lines 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>
Collapse file

‎core-java-io/pom.xml‎

Copy file name to clipboardExpand all lines: core-java-io/pom.xml
+3-7Lines 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>
Collapse file

‎core-java-sun/pom.xml‎

Copy file name to clipboardExpand all lines: core-java-sun/pom.xml
+3-7Lines 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>
Collapse file

‎core-java/pom.xml‎

Copy file name to clipboardExpand all lines: core-java/pom.xml
+3-9Lines 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>
Collapse file

‎core-kotlin/pom.xml‎

Copy file name to clipboardExpand all lines: core-kotlin/pom.xml
-6Lines 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>
Collapse file

‎drools/pom.xml‎

Copy file name to clipboardExpand all lines: drools/pom.xml
+6-10Lines 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>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.