Skip to content

Commit a950bd8

Browse files
committed
BAEL-17684 Cleanup pom properties
1 parent c4af872 commit a950bd8

File tree

50 files changed

+166
-1234
lines changed

Some content is hidden

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

50 files changed

+166
-1234
lines changed

blade/pom.xml

Lines changed: 5 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,14 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
44

55
<modelVersion>4.0.0</modelVersion>
6-
<!-- WITH THIS mvn integration-test DOES WORK -->
7-
<groupId>com.baeldung</groupId>
86
<artifactId>blade</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
107
<name>blade</name>
118

12-
13-
<!-- WITH THIS mvn integration-test DOESN'T WORK -->
14-
<!-- <parent> -->
15-
<!-- <groupId>com.baeldung</groupId> -->
16-
<!-- <artifactId>parent-modules</artifactId> -->
17-
<!-- <version>1.0.0-SNAPSHOT</version> -->
18-
<!-- </parent> -->
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
1914

2015
<dependencies>
2116
<dependency>
@@ -45,12 +40,6 @@
4540
</dependency>
4641

4742
<!-- TEST -->
48-
<dependency>
49-
<groupId>junit</groupId>
50-
<artifactId>junit</artifactId>
51-
<version>${junit.version}</version>
52-
<scope>test</scope>
53-
</dependency>
5443
<dependency>
5544
<groupId>org.assertj</groupId>
5645
<artifactId>assertj-core</artifactId>
@@ -79,20 +68,6 @@
7968
<build>
8069
<finalName>sample-blade-app</finalName>
8170
<plugins>
82-
83-
<plugin>
84-
<groupId>org.apache.maven.plugins</groupId>
85-
<artifactId>maven-surefire-plugin</artifactId>
86-
<version>${maven-surefire-plugin.version}</version>
87-
<configuration>
88-
<forkCount>3</forkCount>
89-
<reuseForks>true</reuseForks>
90-
<excludes>
91-
<exclude>**/*LiveTest.java</exclude>
92-
</excludes>
93-
</configuration>
94-
</plugin>
95-
9671
<plugin>
9772
<groupId>org.apache.maven.plugins</groupId>
9873
<artifactId>maven-failsafe-plugin</artifactId>
@@ -172,34 +147,19 @@
172147
</execution>
173148
</executions>
174149
</plugin>
175-
<plugin>
176-
<groupId>org.apache.maven.plugins</groupId>
177-
<artifactId>maven-compiler-plugin</artifactId>
178-
<version>${maven-compiler-plugin.version}</version>
179-
<configuration>
180-
<source>${maven.compiler.source}</source>
181-
<target>${maven.compiler.target}</target>
182-
<encoding>UTF-8</encoding>
183-
</configuration>
184-
</plugin>
185150
</plugins>
186151
</build>
187152

188153
<properties>
189-
<maven.compiler.source>1.8</maven.compiler.source>
190-
<maven.compiler.target>1.8</maven.compiler.target>
191154
<blade-mvc.version>2.0.14.RELEASE</blade-mvc.version>
192155
<bootstrap.version>4.2.1</bootstrap.version>
193156
<commons-lang3.version>3.8.1</commons-lang3.version>
194157
<lombok.version>1.18.4</lombok.version>
195-
<junit.version>4.12</junit.version>
196158
<httpclient.version>4.5.6</httpclient.version>
197159
<httpmime.version>4.5.6</httpmime.version>
198160
<httpcore.version>4.4.10</httpcore.version>
199161
<assertj-core.version>3.11.1</assertj-core.version>
200162
<maven-failsafe-plugin.version>3.0.0-M3</maven-failsafe-plugin.version>
201163
<process-exec-maven-plugin.version>0.7</process-exec-maven-plugin.version>
202-
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
203-
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
204164
</properties>
205165
</project>

bootique/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@
4242
<artifactId>bootique-test</artifactId>
4343
<scope>test</scope>
4444
</dependency>
45-
<dependency>
46-
<groupId>junit</groupId>
47-
<artifactId>junit</artifactId>
48-
<version>${junit.version}</version>
49-
<scope>test</scope>
50-
</dependency>
5145
</dependencies>
5246

5347
<build>

cas/cas-server/.factorypath

Lines changed: 158 additions & 133 deletions
Large diffs are not rendered by default.

cas/cas-server/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@
198198

199199
<wrapper-maven-plugin.version>0.0.4</wrapper-maven-plugin.version>
200200
<maven-war-plugin.version>2.6</maven-war-plugin.version>
201-
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
202201

203202
<echo-maven-plugin.version>0.3.0</echo-maven-plugin.version>
204203
<pgpverify-maven-plugin.version>1.1.0</pgpverify-maven-plugin.version>

cdi/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@
3636
<version>${assertj-core.version}</version>
3737
<scope>test</scope>
3838
</dependency>
39-
<dependency>
40-
<groupId>junit</groupId>
41-
<artifactId>junit</artifactId>
42-
<version>${junit.version}</version>
43-
<scope>test</scope>
44-
</dependency>
4539
<dependency>
4640
<groupId>org.springframework</groupId>
4741
<artifactId>spring-context</artifactId>

checker-plugin/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.baeldung</groupId>
54
<artifactId>checker-plugin</artifactId>
65
<version>1.0-SNAPSHOT</version>
76
<name>checker-plugin</name>

cloud-foundry-uaa/cf-uaa-oauth2-client/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.example</groupId>
66
<artifactId>cf-uaa-oauth2-client</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
87
<name>uaa-client-webapp</name>
98
<description>Demo project for Spring Boot</description>
109

cloud-foundry-uaa/cf-uaa-oauth2-resource-server/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.baeldung.cfuaa</groupId>
66
<artifactId>cf-uaa-oauth2-resource-server</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
87
<name>cf-uaa-oauth2-resource-server</name>
98
<description>Demo project for Spring Boot</description>
109

code-generation/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.baeldung</groupId>
54
<artifactId>code-generation</artifactId>
65
<version>1.0</version>
76
<name>code-generation</name>

core-groovy-2/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,8 @@
181181
<hsqldb.version>2.4.0</hsqldb.version>
182182
<spock-core.version>1.1-groovy-2.4</spock-core.version>
183183
<groovy-wslite.version>1.1.3</groovy-wslite.version>
184-
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
185184
<logback.version>1.2.3</logback.version>
186185
<groovy.version>2.5.7</groovy.version>
187-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
188186
</properties>
189187
</project>
190188

0 commit comments

Comments
 (0)