From c09cc51c3f7888b838e64b23c01a725271a30f5e Mon Sep 17 00:00:00 2001 From: thomasmuller Date: Wed, 4 Jun 2025 14:57:12 +0200 Subject: [PATCH] =?UTF-8?q?Erster=20commit=20f=C3=BCr=20das=20Projekt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schach/pom.xml | 81 +++++++++++++++++++ schach/scrum.txt | 0 .../informatik/schach/schach/App.java | 13 +++ .../informatik/schach/schach/AppTest.java | 38 +++++++++ 4 files changed, 132 insertions(+) create mode 100644 schach/pom.xml create mode 100644 schach/scrum.txt create mode 100644 schach/src/main/java/de/hs_mannheim/informatik/schach/schach/App.java create mode 100644 schach/src/test/java/de/hs_mannheim/informatik/schach/schach/AppTest.java diff --git a/schach/pom.xml b/schach/pom.xml new file mode 100644 index 0000000..af8a653 --- /dev/null +++ b/schach/pom.xml @@ -0,0 +1,81 @@ + + + + 4.0.0 + + de.hs-mannheim.informatik.schach + schach + 0.0.1-SNAPSHOT + + schach + A simple schach. + + http://www.example.com + + + UTF-8 + 8 + 8 + + + + + junit + junit + 3.8.1 + + + + + + + + maven-clean-plugin + 3.4.0 + + + maven-site-plugin + 3.12.1 + + + maven-project-info-reports-plugin + 3.6.1 + + + + maven-resources-plugin + 3.3.1 + + + maven-compiler-plugin + 3.13.0 + + + maven-surefire-plugin + 3.3.0 + + + maven-jar-plugin + 3.4.2 + + + maven-install-plugin + 3.1.2 + + + maven-deploy-plugin + 3.1.2 + + + + + + + + + maven-project-info-reports-plugin + + + + diff --git a/schach/scrum.txt b/schach/scrum.txt new file mode 100644 index 0000000..e69de29 diff --git a/schach/src/main/java/de/hs_mannheim/informatik/schach/schach/App.java b/schach/src/main/java/de/hs_mannheim/informatik/schach/schach/App.java new file mode 100644 index 0000000..53bb37b --- /dev/null +++ b/schach/src/main/java/de/hs_mannheim/informatik/schach/schach/App.java @@ -0,0 +1,13 @@ +package de.hs_mannheim.informatik.schach.schach; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/schach/src/test/java/de/hs_mannheim/informatik/schach/schach/AppTest.java b/schach/src/test/java/de/hs_mannheim/informatik/schach/schach/AppTest.java new file mode 100644 index 0000000..44559f6 --- /dev/null +++ b/schach/src/test/java/de/hs_mannheim/informatik/schach/schach/AppTest.java @@ -0,0 +1,38 @@ +package de.hs_mannheim.informatik.schach.schach; + +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 ); + } +}