Skip to content

Commit bc518a5

Browse files
author
eugenp
committed
maven work
1 parent 759d8e1 commit bc518a5

3 files changed

Lines changed: 35 additions & 20 deletions

File tree

ejb/ejb-client/pom.xml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
<parent>
6-
<groupId>com.baeldung.ejb</groupId>
7-
<artifactId>ejb</artifactId>
8-
<version>1.0-SNAPSHOT</version>
9-
</parent>
10-
<artifactId>ejb-client</artifactId>
11-
<name>EJB3 Client Maven</name>
12-
<description>EJB3 Client Maven</description>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>ejb-client</artifactId>
6+
<name>ejb-client</name>
7+
8+
<parent>
9+
<groupId>com.baeldung.ejb</groupId>
10+
<artifactId>ejb</artifactId>
11+
<version>1.0-SNAPSHOT</version>
12+
</parent>
13+
1314
<dependencies>
1415
<dependency>
1516
<groupId>org.wildfly</groupId>
@@ -44,10 +45,10 @@
4445
</plugin>
4546
</plugins>
4647
</build>
47-
48+
4849
<properties>
4950
<junit.version>4.12</junit.version>
5051
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
51-
52+
5253
</properties>
5354
</project>

image-processing/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
54
<modelVersion>4.0.0</modelVersion>
65

76
<groupId>com.baeldung</groupId>
8-
<artifactId>imageprocessing</artifactId>
7+
<artifactId>image-processing</artifactId>
98
<version>1.0-SNAPSHOT</version>
109

1110
<properties>
@@ -25,4 +24,5 @@
2524
<version>${core-image.version}</version>
2625
</dependency>
2726
</dependencies>
27+
2828
</project>

log4j2/pom.xml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
54
<modelVersion>4.0.0</modelVersion>
65

76
<artifactId>log4j2</artifactId>
@@ -65,6 +64,7 @@
6564

6665
<build>
6766
<plugins>
67+
6868
<plugin>
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-compiler-plugin</artifactId>
@@ -74,9 +74,23 @@
7474
<target>1.8</target>
7575
</configuration>
7676
</plugin>
77+
<plugin>
78+
<groupId>org.apache.maven.plugins</groupId>
79+
<artifactId>maven-surefire-plugin</artifactId>
80+
<version>${maven-surefire-plugin.version}</version>
81+
<configuration>
82+
<excludes>
83+
<exclude>**/*IntegrationTest.java</exclude>
84+
<exclude>**/*LongRunningUnitTest.java</exclude>
85+
<exclude>**/*ManualTest.java</exclude>
86+
</excludes>
87+
<testFailureIgnore>true</testFailureIgnore>
88+
</configuration>
89+
</plugin>
90+
7791
</plugins>
7892
</build>
79-
93+
8094
<properties>
8195
<jackson.version>2.8.5</jackson.version>
8296
<h2.version>1.4.193</h2.version>

0 commit comments

Comments
 (0)