diff --git a/SECURITY_INSIGHTS.yaml b/SECURITY_INSIGHTS.yaml index 347c562..1d650d5 100644 --- a/SECURITY_INSIGHTS.yaml +++ b/SECURITY_INSIGHTS.yaml @@ -3,7 +3,7 @@ contribution-policy: accepts-pull-requests: true distribution-points: [] header: - expiration-date: 2024-12-12T00:02:19.908227Z + expiration-date: 2024-12-12T06:03:40.614902Z license: https://github.com/kusaridev/skoot-maven/blob/main/LICENSE project-url: https://github.com/kusaridev/skoot-maven schema-version: 1.0.0 diff --git a/skoot-java-3/pom.xml b/skoot-java-3/pom.xml new file mode 100644 index 0000000..712c223 --- /dev/null +++ b/skoot-java-3/pom.xml @@ -0,0 +1,18 @@ + + 4.0.0 + com.mlieberman85.skoot-java-3 + skoot-java-3 + jar + 1.0-SNAPSHOT + skoot-java-3 + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + diff --git a/skoot-java-3/src/main/java/com/mlieberman85/skoot-java-3/App.java b/skoot-java-3/src/main/java/com/mlieberman85/skoot-java-3/App.java new file mode 100644 index 0000000..adb2693 --- /dev/null +++ b/skoot-java-3/src/main/java/com/mlieberman85/skoot-java-3/App.java @@ -0,0 +1,13 @@ +package com.mlieberman85.skoot-java-3; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/skoot-java-3/src/test/java/com/mlieberman85/skoot-java-3/AppTest.java b/skoot-java-3/src/test/java/com/mlieberman85/skoot-java-3/AppTest.java new file mode 100644 index 0000000..6fbc546 --- /dev/null +++ b/skoot-java-3/src/test/java/com/mlieberman85/skoot-java-3/AppTest.java @@ -0,0 +1,38 @@ +package com.mlieberman85.skoot-java-3; + +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 ); + } +}