Skip to content

Commit 86cebe5

Browse files
amit2103pivovarit
authored andcommitted
Bael 5926 (eugenp#4023)
* Added parent module on poms that have no parent defined * Removed dependency reduced pom from undertow module * Aligned and Defined the common plugins in the parents * Removed dependency-reduced-pom.xml from undertow module * Reverting test fail modules with surefire testFailureIgnore ture * Reverted wrong push with org.hsqldb
1 parent 7140229 commit 86cebe5

File tree

81 files changed

+26
-1164
lines changed

Some content is hidden

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

81 files changed

+26
-1164
lines changed

animal-sniffer-mvn-plugin/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,6 @@
2626
</dependencies>
2727
<build>
2828
<plugins>
29-
<plugin>
30-
<artifactId>maven-compiler-plugin</artifactId>
31-
<version>3.7.0</version>
32-
<configuration>
33-
<source>1.8</source>
34-
<target>1.8</target>
35-
</configuration>
36-
</plugin>
3729
<plugin>
3830
<groupId>org.codehaus.mojo</groupId>
3931
<artifactId>animal-sniffer-maven-plugin</artifactId>

annotations/annotation-processing/pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,11 @@
1919
</properties>
2020

2121
<dependencies>
22-
2322
<dependency>
2423
<groupId>com.google.auto.service</groupId>
2524
<artifactId>auto-service</artifactId>
2625
<version>${auto-service.version}</version>
2726
<scope>provided</scope>
2827
</dependency>
29-
3028
</dependencies>
31-
32-
<build>
33-
34-
<plugins>
35-
36-
<plugin>
37-
<groupId>org.apache.maven.plugins</groupId>
38-
<artifactId>maven-compiler-plugin</artifactId>
39-
<version>${maven-compiler-plugin.version}</version>
40-
<configuration>
41-
<source>1.8</source>
42-
<target>1.8</target>
43-
</configuration>
44-
</plugin>
45-
46-
</plugins>
47-
48-
</build>
49-
5029
</project>

apache-cxf/cxf-introduction/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,6 @@
2525
<mainClass>com.baeldung.cxf.introduction.Server</mainClass>
2626
</configuration>
2727
</plugin>
28-
<plugin>
29-
<artifactId>maven-surefire-plugin</artifactId>
30-
<version>${surefire.version}</version>
31-
<configuration>
32-
<excludes>
33-
<exclude>**/*LiveTest.java</exclude>
34-
</excludes>
35-
</configuration>
36-
</plugin>
3728
</plugins>
3829
</build>
3930

apache-cxf/cxf-jaxrs-implementation/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,6 @@
2727
<mainClass>com.baeldung.cxf.jaxrs.implementation.RestfulServer</mainClass>
2828
</configuration>
2929
</plugin>
30-
<plugin>
31-
<artifactId>maven-surefire-plugin</artifactId>
32-
<version>${surefire.version}</version>
33-
<configuration>
34-
<excludes>
35-
<exclude>**/*LiveTest.java</exclude>
36-
</excludes>
37-
</configuration>
38-
</plugin>
3930
</plugins>
4031
</build>
4132

apache-cxf/cxf-spring/pom.xml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,6 @@
5252
<failOnMissingWebXml>false</failOnMissingWebXml>
5353
</configuration>
5454
</plugin>
55-
<plugin>
56-
<artifactId>maven-surefire-plugin</artifactId>
57-
<version>${surefire.version}</version>
58-
<configuration>
59-
<excludes>
60-
<exclude>**/*LiveTest.java</exclude>
61-
</excludes>
62-
</configuration>
63-
</plugin>
6455
</plugins>
6556
</build>
6657

@@ -102,24 +93,6 @@
10293
</execution>
10394
</executions>
10495
</plugin>
105-
106-
<plugin>
107-
<artifactId>maven-surefire-plugin</artifactId>
108-
<version>${surefire.version}</version>
109-
<executions>
110-
<execution>
111-
<phase>integration-test</phase>
112-
<goals>
113-
<goal>test</goal>
114-
</goals>
115-
<configuration>
116-
<excludes>
117-
<exclude>none</exclude>
118-
</excludes>
119-
</configuration>
120-
</execution>
121-
</executions>
122-
</plugin>
12396
</plugins>
12497
</build>
12598
</profile>

apache-spark/pom.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,4 @@
3232
<scope>test</scope>
3333
</dependency>
3434
</dependencies>
35-
<build>
36-
<plugins>
37-
<plugin>
38-
<groupId>org.apache.maven.plugins</groupId>
39-
<artifactId>maven-compiler-plugin</artifactId>
40-
<version>3.7.0</version>
41-
<configuration>
42-
<source>1.8</source>
43-
<target>1.8</target>
44-
</configuration>
45-
</plugin>
46-
</plugins>
47-
</build>
4835
</project>

atomix/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,4 @@
2929
<version>1.2.17</version>
3030
</dependency>
3131
</dependencies>
32-
<build>
33-
<plugins>
34-
<plugin>
35-
<artifactId>maven-compiler-plugin</artifactId>
36-
<version>3.7.0</version>
37-
<configuration>
38-
<source>1.8</source>
39-
<target>1.8</target>
40-
</configuration>
41-
</plugin>
42-
</plugins>
43-
</build>
44-
45-
4632
</project>

bootique/dependency-reduced-pom.xml

Lines changed: 0 additions & 56 deletions
This file was deleted.

camel-api/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,6 @@
4545
<defaultGoal>spring-boot:run</defaultGoal>
4646

4747
<plugins>
48-
<plugin>
49-
<artifactId>maven-compiler-plugin</artifactId>
50-
<version>${maven-compiler-plugin.version}</version>
51-
<configuration>
52-
<source>1.8</source>
53-
<target>1.8</target>
54-
</configuration>
55-
</plugin>
5648
<plugin>
5749
<groupId>org.springframework.boot</groupId>
5850
<artifactId>spring-boot-maven-plugin</artifactId>
@@ -71,7 +63,6 @@
7163
<properties>
7264
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7365
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
74-
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
7566
<camel.version>2.19.1</camel.version>
7667
<spring-boot-starter.version>1.5.4.RELEASE</spring-boot-starter.version>
7768
</properties>

cas/cas-secured-app/pom.xml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,24 +65,6 @@
6565
<groupId>org.springframework.boot</groupId>
6666
<artifactId>spring-boot-maven-plugin</artifactId>
6767
</plugin>
68-
<plugin>
69-
<groupId>org.apache.maven.plugins</groupId>
70-
<artifactId>maven-surefire-plugin</artifactId>
71-
<version>${maven-surefire-plugin.version}</version>
72-
<configuration>
73-
<forkCount>3</forkCount>
74-
<reuseForks>true</reuseForks>
75-
<excludes>
76-
<exclude>**/*IntegrationTest.java</exclude>
77-
<exclude>**/*LongRunningUnitTest.java</exclude>
78-
<exclude>**/*ManualTest.java</exclude>
79-
<exclude>**/JdbcTest.java</exclude>
80-
<exclude>**/*LiveTest.java</exclude>
81-
</excludes>
82-
83-
</configuration>
84-
</plugin>
85-
8668
</plugins>
8769
</build>
8870

0 commit comments

Comments
 (0)