diff --git a/object-pool/pom.xml b/object-pool/pom.xml new file mode 100644 index 000000000..3a3b62cb8 --- /dev/null +++ b/object-pool/pom.xml @@ -0,0 +1,18 @@ + + + 4.0.0 + + com.iluwatar + java-design-patterns + 1.0-SNAPSHOT + + object-pool + + + junit + junit + test + + + diff --git a/object-pool/src/main/java/com/iluwatar/App.java b/object-pool/src/main/java/com/iluwatar/App.java new file mode 100644 index 000000000..5c0007cfd --- /dev/null +++ b/object-pool/src/main/java/com/iluwatar/App.java @@ -0,0 +1,7 @@ +package com.iluwatar; + +public class App { + + public static void main( String[] args ) { + } +} diff --git a/object-pool/src/test/java/com/iluwatar/AppTest.java b/object-pool/src/test/java/com/iluwatar/AppTest.java new file mode 100644 index 000000000..abcafd571 --- /dev/null +++ b/object-pool/src/test/java/com/iluwatar/AppTest.java @@ -0,0 +1,12 @@ +package com.iluwatar; + +import org.junit.Test; + +public class AppTest { + + @Test + public void test() { + String[] args = {}; + App.main(args); + } +} diff --git a/pom.xml b/pom.xml index 6738e3abe..ae5c2a401 100644 --- a/pom.xml +++ b/pom.xml @@ -60,6 +60,7 @@ resource-acquisition-is-initialization thread-pool private-class-data + object-pool