Skip to content

Commit 9c56fd8

Browse files
committed
Remove packaging type from pom.xml and add initial Main class
1 parent cfe3a37 commit 9c56fd8

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<artifactId>scijava-context-test</artifactId>
1515
<version>1.0-SNAPSHOT</version>
1616

17-
<packaging>pom</packaging>
1817
<name>Scijava Context Test</name>
1918
<description>
2019
The only purpose of this repo is to test a potential memory leak in scijava context

src/main/java/sc/java/Main.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package sc.java;
2+
3+
public class Main
4+
{
5+
public static void main( String[] args )
6+
{
7+
System.out.println( "Hello, world!" );
8+
}
9+
}

0 commit comments

Comments
 (0)