summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormokha <mokha@cisco.com>2019-05-05 19:22:33 -0600
committermokha <mokha@cisco.com>2019-05-05 19:22:33 -0600
commit24cbce0b0933c2d72da71749edf4ee97f4b3d063 (patch)
tree8418821564a6bd279e1472577c38109c9912a21d
parent3c46accd08922474f91d40499ff5ecefcd7539fb (diff)
dump my-app
-rw-r--r--my-app/.gitignore1
-rw-r--r--my-app/pom.xml18
-rw-r--r--my-app/src/main/java/ca/mokhan/app/App.java13
-rw-r--r--my-app/src/test/java/ca/mokhan/app/AppTest.java38
4 files changed, 0 insertions, 70 deletions
diff --git a/my-app/.gitignore b/my-app/.gitignore
deleted file mode 100644
index eb5a316..0000000
--- a/my-app/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-target
diff --git a/my-app/pom.xml b/my-app/pom.xml
deleted file mode 100644
index 5535bd0..0000000
--- a/my-app/pom.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>ca.mokhan.app</groupId>
- <artifactId>my-app</artifactId>
- <packaging>jar</packaging>
- <version>1.0-SNAPSHOT</version>
- <name>my-app</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
diff --git a/my-app/src/main/java/ca/mokhan/app/App.java b/my-app/src/main/java/ca/mokhan/app/App.java
deleted file mode 100644
index 0e6c0c6..0000000
--- a/my-app/src/main/java/ca/mokhan/app/App.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package ca.mokhan.app;
-
-/**
- * Hello world!
- *
- */
-public class App
-{
- public static void main( String[] args )
- {
- System.out.println( "Hello World!" );
- }
-}
diff --git a/my-app/src/test/java/ca/mokhan/app/AppTest.java b/my-app/src/test/java/ca/mokhan/app/AppTest.java
deleted file mode 100644
index 6242c56..0000000
--- a/my-app/src/test/java/ca/mokhan/app/AppTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package ca.mokhan.app;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest extends TestCase
-{
- /**
- * Create the test case
- *
- * @param testName name of the test case
- */
- public AppTest( String testName )
- {
- super( testName );
- }
-
- /**
- * @return the suite of tests being tested
- */
- public static Test suite()
- {
- return new TestSuite( AppTest.class );
- }
-
- /**
- * Rigourous Test :-)
- */
- public void testApp()
- {
- assertTrue(true);
- assertFalse(false);
- }
-}