commit f74eed2a3ff67ab7977e35f3961b9366a2a3a00c Author: NataliaCancinoV Date: Wed Apr 17 08:23:45 2024 -0600 Commit creación backend diff --git a/backend/pom.xml b/backend/pom.xml new file mode 100644 index 0000000..745a3a5 --- /dev/null +++ b/backend/pom.xml @@ -0,0 +1,75 @@ + + + + 4.0.0 + + mx.uv + backend + 1.0-SNAPSHOT + + backend + + 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/backend/src/main/java/mx/uv/App.java b/backend/src/main/java/mx/uv/App.java new file mode 100644 index 0000000..a2d3cff --- /dev/null +++ b/backend/src/main/java/mx/uv/App.java @@ -0,0 +1,13 @@ +package mx.uv; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/backend/src/test/java/mx/uv/AppTest.java b/backend/src/test/java/mx/uv/AppTest.java new file mode 100644 index 0000000..6284b29 --- /dev/null +++ b/backend/src/test/java/mx/uv/AppTest.java @@ -0,0 +1,20 @@ +package mx.uv; + +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 ); + } +} diff --git a/backend/target/classes/mx/uv/App.class b/backend/target/classes/mx/uv/App.class new file mode 100644 index 0000000..eaaa685 Binary files /dev/null and b/backend/target/classes/mx/uv/App.class differ diff --git a/backend/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/backend/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..bf8adff --- /dev/null +++ b/backend/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1 @@ +mx\uv\App.class diff --git a/backend/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/backend/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..93be142 --- /dev/null +++ b/backend/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +C:\Users\natal\OneDrive\Escritorio\ProyectoFinal-DS\BackPastel\backend\src\main\java\mx\uv\App.java diff --git a/backend/target/test-classes/mx/uv/AppTest.class b/backend/target/test-classes/mx/uv/AppTest.class new file mode 100644 index 0000000..bd234c7 Binary files /dev/null and b/backend/target/test-classes/mx/uv/AppTest.class differ