diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..49ca981 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.idea +*.iml +target + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..70a23bb --- /dev/null +++ b/pom.xml @@ -0,0 +1,19 @@ + + + 4.0.0 + + org.thoughtworkers + java-dojo + 1.0 + + + junit + junit + 4.8.2 + + + + + \ No newline at end of file diff --git a/src/test/java/org/thoughtworkers/SmokeTest.java b/src/test/java/org/thoughtworkers/SmokeTest.java new file mode 100644 index 0000000..ff2c2a2 --- /dev/null +++ b/src/test/java/org/thoughtworkers/SmokeTest.java @@ -0,0 +1,13 @@ +package org.thoughtworkers; + +import org.junit.Test; + +import static org.hamcrest.core.Is.is; +import static org.junit.Assert.assertThat; + +public class SmokeTest { + @Test + public void shouldAlwaysPass() throws Exception { + assertThat(1, is(1)); + } +}