Skip to content

Commit 0466d46

Browse files
amit2103pivovarit
authored andcommitted
Added parent module on poms that have no parent defined (eugenp#3997)
* Added parent module on poms that have no parent defined * Removed dependency reduced pom from undertow module
1 parent b1dcdba commit 0466d46

55 files changed

Lines changed: 260 additions & 89 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.

activejdbc/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
<activejdbc.version>1.4.13</activejdbc.version>
1313
<environments>development.test,development</environments>
1414
</properties>
15+
<parent>
16+
<artifactId>parent-modules</artifactId>
17+
<groupId>com.baeldung</groupId>
18+
<version>1.0.0-SNAPSHOT</version>
19+
</parent>
1520
<build>
1621
<plugins>
1722
<plugin>

animal-sniffer-mvn-plugin/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
<properties>
1212
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
1313
</properties>
14-
14+
<parent>
15+
<groupId>com.baeldung</groupId>
16+
<artifactId>parent-modules</artifactId>
17+
<version>1.0.0-SNAPSHOT</version>
18+
</parent>
1519
<dependencies>
1620
<dependency>
1721
<groupId>junit</groupId>

apache-spark/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
</properties>
16-
16+
<parent>
17+
<groupId>com.baeldung</groupId>
18+
<artifactId>parent-modules</artifactId>
19+
<version>1.0.0-SNAPSHOT</version>
20+
</parent>
1721
<dependencies>
1822
<!-- https://mvnrepository.com/artifact/org.apache.spark/spark-core_2.10 -->
1923
<dependency>

asm/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
<artifactId>asm</artifactId>
77
<version>1.0</version>
88
<packaging>jar</packaging>
9-
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
1014
<dependencies>
1115
<dependency>
1216
<groupId>org.ow2.asm</groupId>
881 KB
Binary file not shown.
866 KB
Binary file not shown.
1.55 MB
Binary file not shown.
668 KB
Binary file not shown.
517 KB
Binary file not shown.

bootique/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
</properties>
1414

1515
<parent>
16-
<groupId>io.bootique.parent</groupId>
17-
<artifactId>bootique-parent</artifactId>
18-
<version>0.12</version>
19-
</parent>
16+
<groupId>com.baeldung</groupId>
17+
<artifactId>parent-modules</artifactId>
18+
<version>1.0.0-SNAPSHOT</version>
19+
</parent>
2020

2121
<dependencyManagement>
2222
<dependencies>

0 commit comments

Comments
 (0)