Skip to content

Commit

Permalink
Initialize go module for skoot-java-2
Browse files Browse the repository at this point in the history
  • Loading branch information
mlieberman85 committed Dec 13, 2023
1 parent eac8f89 commit 8474f76
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 0 deletions.
15 changes: 15 additions & 0 deletions SECURITY_INSIGHTS.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
contribution-policy:
accepts-automated-pull-requests: true
accepts-pull-requests: true
distribution-points: []
header:
expiration-date: 2024-12-12T00:02:19.908227Z
license: https://github.com/kusaridev/skoot-maven/blob/main/LICENSE
project-url: https://github.com/kusaridev/skoot-maven
schema-version: 1.0.0
project-lifecycle:
bug-fixes-only: false
status: active
security-contacts: []
vulnerability-reporting:
accepts-vulnerability-reports: false
18 changes: 18 additions & 0 deletions skoot-java-2/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<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>com.mlieberman85.skoot-java-2</groupId>
<artifactId>skoot-java-2</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>skoot-java-2</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>
13 changes: 13 additions & 0 deletions skoot-java-2/src/main/java/com/mlieberman85/skoot-java-2/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.mlieberman85.skoot-java-2;

/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package com.mlieberman85.skoot-java-2;

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 );
}
}

0 comments on commit 8474f76

Please sign in to comment.