Skip to content

Commit

Permalink
Generated maven project
Browse files Browse the repository at this point in the history
  • Loading branch information
jitpack committed Jan 15, 2015
1 parent d237499 commit a374cf4
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<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.github.jitpack</groupId>
<artifactId>example</artifactId>
<version>0.1</version>
<packaging>jar</packaging>

<name>example</name>
<url>https://jitpack.io/#jitpack/example/0.1</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 src/main/java/com/github/jitpack/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.github.jitpack;

/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
38 changes: 38 additions & 0 deletions src/test/java/com/github/jitpack/AppTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package com.github.jitpack;

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 a374cf4

Please sign in to comment.