commit 814f35d79e8575774542f7508275970b428c450a Author: Adem Berber Date: Tue Feb 8 16:48:08 2022 +0100 Project Created diff --git a/projjpn/.classpath b/projjpn/.classpath new file mode 100644 index 0000000..1247f9f --- /dev/null +++ b/projjpn/.classpath @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/projjpn/.gitignore b/projjpn/.gitignore new file mode 100644 index 0000000..b83d222 --- /dev/null +++ b/projjpn/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/projjpn/.project b/projjpn/.project new file mode 100644 index 0000000..1a8ae16 --- /dev/null +++ b/projjpn/.project @@ -0,0 +1,23 @@ + + + projjpn + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + diff --git a/projjpn/.settings/org.eclipse.core.resources.prefs b/projjpn/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..f9fe345 --- /dev/null +++ b/projjpn/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 +encoding/=UTF-8 diff --git a/projjpn/.settings/org.eclipse.jdt.core.prefs b/projjpn/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..a3b98fd --- /dev/null +++ b/projjpn/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 +org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.release=disabled +org.eclipse.jdt.core.compiler.source=1.7 diff --git a/projjpn/.settings/org.eclipse.m2e.core.prefs b/projjpn/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/projjpn/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/projjpn/pom.xml b/projjpn/pom.xml new file mode 100644 index 0000000..17ce0e0 --- /dev/null +++ b/projjpn/pom.xml @@ -0,0 +1,86 @@ + + + + 4.0.0 + + de.hs-fulda.ciip + projjpn + 0.0.1-SNAPSHOT + + projjpn + A simple projjpn. + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + junit + junit + 3.8.1 + + + net.sf.ucanaccess + ucanaccess + 5.0.1 + + + + + + + + maven-clean-plugin + 3.1.0 + + + maven-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + + + + + + maven-project-info-reports-plugin + + + + diff --git a/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/App.java b/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/App.java new file mode 100644 index 0000000..8dd6711 --- /dev/null +++ b/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/App.java @@ -0,0 +1,13 @@ +package de.hs_fulda.ciip.projjpn; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/projjpn/src/site/site.xml b/projjpn/src/site/site.xml new file mode 100644 index 0000000..a962b8a --- /dev/null +++ b/projjpn/src/site/site.xml @@ -0,0 +1,26 @@ + + + + + projjpn + https://maven.apache.org/images/apache-maven-project.png + https://www.apache.org/ + + + + https://maven.apache.org/images/maven-logo-black-on-white.png + https://maven.apache.org/ + + + + org.apache.maven.skins + maven-fluido-skin + 1.7 + + + + + + + \ No newline at end of file diff --git a/projjpn/src/test/java/de/hs_fulda/ciip/projjpn/AppTest.java b/projjpn/src/test/java/de/hs_fulda/ciip/projjpn/AppTest.java new file mode 100644 index 0000000..a5ea653 --- /dev/null +++ b/projjpn/src/test/java/de/hs_fulda/ciip/projjpn/AppTest.java @@ -0,0 +1,38 @@ +package de.hs_fulda.ciip.projjpn; + +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 ); + } +}