# HG changeset patch # User Sascha L. Teichmann # Date 1299682911 0 # Node ID a69b8494fcac1148012fe419e88e7d8dd7889482 # Parent 324e12ab7a05ad7321506a11be6c7cd4f902ac27 Created a new empty maven project flys-backend/trunk@1443 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 324e12ab7a05 -r a69b8494fcac flys-backend/ChangeLog --- a/flys-backend/ChangeLog Wed Mar 09 14:07:15 2011 +0000 +++ b/flys-backend/ChangeLog Wed Mar 09 15:01:51 2011 +0000 @@ -1,3 +1,10 @@ +2011-03-09 Sascha L. Teichmann + + * pom.xml, src/**: Created a new empty maven project: + $ mvn archetype:create \ + -DgroupId=de.intevation.flys \ + -DartifactId=flys-backend + 2011-03-09 Sascha L. Teichmann * README: New. Some setup instructions. diff -r 324e12ab7a05 -r a69b8494fcac flys-backend/pom.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-backend/pom.xml Wed Mar 09 15:01:51 2011 +0000 @@ -0,0 +1,25 @@ + + 4.0.0 + + de.intevation.flys + flys-backend + 1.0-SNAPSHOT + jar + + flys-backend + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff -r 324e12ab7a05 -r a69b8494fcac flys-backend/src/main/java/de/intevation/flys/App.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-backend/src/main/java/de/intevation/flys/App.java Wed Mar 09 15:01:51 2011 +0000 @@ -0,0 +1,13 @@ +package de.intevation.flys; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff -r 324e12ab7a05 -r a69b8494fcac flys-backend/src/test/java/de/intevation/flys/AppTest.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-backend/src/test/java/de/intevation/flys/AppTest.java Wed Mar 09 15:01:51 2011 +0000 @@ -0,0 +1,38 @@ +package de.intevation.flys; + +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 ); + } +}