commit 0b8f61675a67e973f90bb21a626bceaa8ae37657 Author: cheney Date: Fri Jul 8 17:10:20 2022 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85e7c1d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.idea/ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..9232a41 --- /dev/null +++ b/pom.xml @@ -0,0 +1,75 @@ + + + + 4.0.0 + + com.sunyard.sge.database + 1 + 1.0 + + 1 + + http://www.example.com + + + UTF-8 + 1.7 + 1.7 + + + + + junit + junit + 4.11 + test + + + + + + + + + maven-clean-plugin + 3.1.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-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + + diff --git a/src/main/java/com/sunyard/sge/database/App.java b/src/main/java/com/sunyard/sge/database/App.java new file mode 100644 index 0000000..f40e467 --- /dev/null +++ b/src/main/java/com/sunyard/sge/database/App.java @@ -0,0 +1,13 @@ +package com.sunyard.sge.database; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/com/sunyard/sge/database/AppTest.java b/src/test/java/com/sunyard/sge/database/AppTest.java new file mode 100644 index 0000000..6cbf81e --- /dev/null +++ b/src/test/java/com/sunyard/sge/database/AppTest.java @@ -0,0 +1,20 @@ +package com.sunyard.sge.database; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; + +/** + * Unit test for simple App. + */ +public class AppTest +{ + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() + { + assertTrue( true ); + } +}