diff --git a/.gitignore b/.gitignore index 33cbfe4df7..aa3be40150 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,6 @@ node_modules # Idea stuff .idea *.iml + +# Java +target diff --git a/unleash-client-java/pom.xml b/unleash-client-java/pom.xml new file mode 100644 index 0000000000..becac166be --- /dev/null +++ b/unleash-client-java/pom.xml @@ -0,0 +1,55 @@ + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + + + no.finn.unleash + unleash-client-java + 1.0-SNAPSHOT + + + 2.0-rc1 + + + + + org.apache.logging.log4j + log4j-api + ${version.log4j2} + + + + org.apache.httpcomponents + httpclient + 4.3.1 + + + + junit + junit + 4.11 + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.7 + 1.7 + + + + + \ No newline at end of file diff --git a/unleash-client-java/src/main/no/finn/unleash/Unleash.java b/unleash-client-java/src/main/no/finn/unleash/Unleash.java new file mode 100644 index 0000000000..34185b5c81 --- /dev/null +++ b/unleash-client-java/src/main/no/finn/unleash/Unleash.java @@ -0,0 +1,4 @@ +package no.finn.unleash; + +public final class Unleash { +} diff --git a/unleash-client-java/src/test/no/finn/unleash/UnleashTest.java b/unleash-client-java/src/test/no/finn/unleash/UnleashTest.java new file mode 100644 index 0000000000..7cfc113a87 --- /dev/null +++ b/unleash-client-java/src/test/no/finn/unleash/UnleashTest.java @@ -0,0 +1,13 @@ +package no.finn.unleash; + +import org.junit.Test; + +import static org.junit.Assert.assertTrue; + +public class UnleashTest { + + @Test + public void helloWorld() { + assertTrue(true); + } +}