Skip to content

Commit 9692ae3

Browse files
Doha2012Eugen
authored andcommitted
add parent to pom (eugenp#1816)
* upgrade to spring boot 1.5.2 * add full update to REST API * modify ratings controller * upgrade herold * fix integration test * fix integration test * minor fix * fix integration test * fix integration test * minor cleanup * minor cleanup * remove log4j properties * use standard logbook.xml * remove log4j dependencies * remove commons-logging * merge * fix conflict * exclude commons-logging dependency * cleanup * minor fix * minor fix * fix dependency issues * Revert "fix dependency issues" This reverts commit 83bf1f9. * fix dependency issues * minor fix * minor fix * minor fix * cleanup generated files * fix commons-logging issue * add parent to pom
1 parent 4e8a466 commit 9692ae3

File tree

123 files changed

+756
-3
lines changed

Some content is hidden

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

123 files changed

+756
-3
lines changed

JGit/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
<version>1.0-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<url>http://maven.apache.org</url>
9+
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
15+
916
<properties>
1017
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1118
<maven.compiler.source>1.8</maven.compiler.source>

Twitter4J/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
<name>Twitter4J</name>
99
<url>http://maven.apache.org</url>
1010

11+
<parent>
12+
<groupId>com.baeldung</groupId>
13+
<artifactId>parent-modules</artifactId>
14+
<version>1.0.0-SNAPSHOT</version>
15+
</parent>
16+
1117
<properties>
1218
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1319
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

algorithms/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
<commons-math3.version>3.6.1</commons-math3.version>
1414
</properties>
1515

16+
<parent>
17+
<groupId>com.baeldung</groupId>
18+
<artifactId>parent-modules</artifactId>
19+
<version>1.0.0-SNAPSHOT</version>
20+
</parent>
21+
1622
<dependencies>
1723
<dependency>
1824
<groupId>org.apache.commons</groupId>

apache-bval/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
<artifactId>apache-bval</artifactId>
66
<version>0.0.1-SNAPSHOT</version>
77

8+
<parent>
9+
<groupId>com.baeldung</groupId>
10+
<artifactId>parent-modules</artifactId>
11+
<version>1.0.0-SNAPSHOT</version>
12+
</parent>
813
<dependencies>
914
<dependency>
1015
<groupId>org.apache.bval</groupId>

apache-cxf/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
<version>0.0.1-SNAPSHOT</version>
77
<packaging>pom</packaging>
88

9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
14+
915
<modules>
1016
<module>cxf-introduction</module>
1117
<module>cxf-spring</module>

apache-fop/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
<name>apache-fop</name>
99

10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
15+
1016
<dependencies>
1117

1218
<!-- logging -->

apache-poi/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
<artifactId>apache-poi</artifactId>
66
<version>0.0.1-SNAPSHOT</version>
77

8+
<parent>
9+
<groupId>com.baeldung</groupId>
10+
<artifactId>parent-modules</artifactId>
11+
<version>1.0.0-SNAPSHOT</version>
12+
</parent>
13+
814
<properties>
915
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
1016
<junit.version>4.12</junit.version>

apache-solrj/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
<packaging>jar</packaging>
88
<name>apache-solrj</name>
99

10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
15+
1016
<properties>
1117
<junit.version>4.12</junit.version>
1218
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>

apache-thrift/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
<version>0.0.1-SNAPSHOT</version>
77
<packaging>pom</packaging>
88

9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
14+
915
<properties>
1016
<java.versin>1.8</java.versin>
1117
<junit.version>4.12</junit.version>

apache-velocity/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
<packaging>war</packaging>
1010
<name>apache-velocity</name>
1111

12+
<parent>
13+
<groupId>com.baeldung</groupId>
14+
<artifactId>parent-modules</artifactId>
15+
<version>1.0.0-SNAPSHOT</version>
16+
</parent>
17+
1218
<properties>
1319
<jdk.version>1.8</jdk.version>
1420
<jstl.version>1.2</jstl.version>

0 commit comments

Comments
 (0)