X Tutup
Skip to content

Commit 27a11aa

Browse files
committed
Added skeleton for Tolerant Reader.
1 parent efe81f0 commit 27a11aa

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
<module>lazy-loading</module>
5353
<module>service-layer</module>
5454
<module>specification</module>
55+
<module>tolerant-reader</module>
5556
</modules>
5657

5758
<dependencyManagement>

tolerant-reader/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.iluwatar</groupId>
7+
<artifactId>java-design-patterns</artifactId>
8+
<version>1.0-SNAPSHOT</version>
9+
</parent>
10+
<artifactId>tolerant-reader</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>junit</groupId>
14+
<artifactId>junit</artifactId>
15+
<scope>test</scope>
16+
</dependency>
17+
</dependencies>
18+
</project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.iluwatar;
2+
3+
public class App
4+
{
5+
public static void main( String[] args ) {
6+
}
7+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.iluwatar;
2+
3+
import org.junit.Test;
4+
5+
6+
public class AppTest {
7+
8+
@Test
9+
public void test() {
10+
String[] args = {};
11+
App.main(args);
12+
}
13+
}

0 commit comments

Comments
 (0)
X Tutup