Skip to content

Commit 5ddae76

Browse files
committed
code moved from core-java to core-java-exceptions
1 parent ece6d5c commit 5ddae76

File tree

4 files changed

+31
-23
lines changed

4 files changed

+31
-23
lines changed
Lines changed: 30 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,35 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
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">
4-
<modelVersion>4.0.0</modelVersion>
5-
<groupId>com.baeldung.exception.numberformat</groupId>
6-
<artifactId>core-java-exceptions</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
8-
<name>core-java-exceptions</name>
2+
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">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.baeldung.exception.numberformat</groupId>
6+
<artifactId>core-java-exceptions</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<name>core-java-exceptions</name>
99

10-
<parent>
11-
<groupId>com.baeldung</groupId>
12-
<artifactId>parent-java</artifactId>
13-
<version>0.0.1-SNAPSHOT</version>
14-
<relativePath>../../parent-java</relativePath>
15-
</parent>
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-java</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
<relativePath>../../parent-java</relativePath>
15+
</parent>
1616

17-
<dependencies>
18-
<dependency>
19-
<groupId>junit</groupId>
20-
<artifactId>junit</artifactId>
21-
<version>4.12</version>
22-
<scope>test</scope>
23-
</dependency>
24-
</dependencies>
17+
<properties>
18+
<commons-lang3.version>3.9</commons-lang3.version>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>junit</groupId>
24+
<artifactId>junit</artifactId>
25+
<version>4.12</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.apache.commons</groupId>
30+
<artifactId>commons-lang3</artifactId>
31+
<version>${commons-lang3.version}</version>
32+
</dependency>
33+
</dependencies>
2534

2635
</project>

core-java-modules/core-java/src/main/java/com/baeldung/exceptions/RootCauseFinder.java renamed to core-java-modules/core-java-exceptions/src/main/java/com/baeldung/exceptions/RootCauseFinder.java

File renamed without changes.

core-java-modules/core-java-exceptions/src/test/java/com/baeldung/exception/error/ErrorGeneratorUnitTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
package com.baeldung.error;
1+
package com.baeldung.exception.error;
22

33
import org.junit.Assert;
4-
import org.junit.Before;
54
import org.junit.Test;
65

76
public class ErrorGeneratorUnitTest {

core-java-modules/core-java/src/test/java/com/baeldung/exceptions/RootCauseFinderUnitTest.java renamed to core-java-modules/core-java-exceptions/src/test/java/com/baeldung/exceptions/RootCauseFinderUnitTest.java

File renamed without changes.

0 commit comments

Comments
 (0)