Skip to content

Commit

Permalink
mavenize
Browse files Browse the repository at this point in the history
  • Loading branch information
Andimeo committed Mar 12, 2017
1 parent 9447410 commit 13c8fe2
Show file tree
Hide file tree
Showing 13 changed files with 69 additions and 33 deletions.
Empty file removed backend/__init__.py
Empty file.
6 changes: 0 additions & 6 deletions backend/app.py

This file was deleted.

2 changes: 0 additions & 2 deletions backend/card_deck.py

This file was deleted.

Empty file removed backend/history.py
Empty file.
2 changes: 0 additions & 2 deletions backend/operation.py

This file was deleted.

Empty file removed backend/role/__init__.py
Empty file.
19 changes: 0 additions & 19 deletions backend/role/base_role.py

This file was deleted.

4 changes: 0 additions & 4 deletions backend/role/witch.py

This file was deleted.

Empty file removed backend/role_collection.py
Empty file.
Empty file removed backend/role_registry.py
Empty file.
18 changes: 18 additions & 0 deletions werewolf/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>one.night.ultimate</groupId>
<artifactId>werewolf</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>werewolf</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 werewolf/src/main/java/one/night/ultimate/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package one.night.ultimate;

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

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 13c8fe2

Please sign in to comment.