# HG changeset patch # User Sascha L. Teichmann # Date 1296582989 0 # Node ID b3792346cb107e5d515943fadacf402d366f78ab Added initial mvn project for FLYS artifacts. flys-artifacts/trunk@1284 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 000000000000 -r b3792346cb10 flys-artifacts/ChangeLog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/ChangeLog Tue Feb 01 17:56:29 2011 +0000 @@ -0,0 +1,4 @@ +2011-02-01 Sascha L. Teichmann + + * src/**, pom.xml: Added initial maven project. + * ChangeLog: new. diff -r 000000000000 -r b3792346cb10 flys-artifacts/pom.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/pom.xml Tue Feb 01 17:56:29 2011 +0000 @@ -0,0 +1,25 @@ + + 4.0.0 + + de.intevation.flys.artifacts + flys-artifacts + 1.0-SNAPSHOT + jar + + flys-artifacts + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff -r 000000000000 -r b3792346cb10 flys-artifacts/src/main/java/de/intevation/flys/artifacts/App.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/App.java Tue Feb 01 17:56:29 2011 +0000 @@ -0,0 +1,13 @@ +package de.intevation.flys.artifacts; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff -r 000000000000 -r b3792346cb10 flys-artifacts/src/test/java/de/intevation/flys/artifacts/AppTest.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/src/test/java/de/intevation/flys/artifacts/AppTest.java Tue Feb 01 17:56:29 2011 +0000 @@ -0,0 +1,38 @@ +package de.intevation.flys.artifacts; + +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 ); + } +}