commit 913c51738a93786984204fe56adfcf0bdb55c1f7 Author: shKim Date: Fri Jan 2 16:07:20 2026 +0900 first commit diff --git a/.LCKmain.java~ b/.LCKmain.java~ new file mode 100644 index 0000000..b10ad7c --- /dev/null +++ b/.LCKmain.java~ @@ -0,0 +1 @@ +C:\Users\shkim\Desktop\MediThings\RND2PJT\uploadtest\main.java \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c995aa5 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.debug.settings.onBuildFailureProceed": true +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..09bf584 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# uploadtest + +Standard Java project structure created: + +- src/main/java +- src/main/resources +- src/test/java + +Run with your JDK or add a build tool (Maven/Gradle). \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..bd03c43 --- /dev/null +++ b/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + com.example + uploadtest + 1.0-SNAPSHOT + jar + + + 21 + 21 + UTF-8 + + diff --git a/src/main/java/com/example/App.class b/src/main/java/com/example/App.class new file mode 100644 index 0000000..54c7f3d Binary files /dev/null and b/src/main/java/com/example/App.class differ diff --git a/src/main/java/com/example/App.java b/src/main/java/com/example/App.java new file mode 100644 index 0000000..494beed --- /dev/null +++ b/src/main/java/com/example/App.java @@ -0,0 +1,12 @@ +package com.example; + +public class App { + public static void main(String[] args) { + System.out.println("Hello, World!"); + + System.out.println("Hello, World!"); + System.out.println("Hello, World!"); + System.out.println("Hello, World!"); + System.out.println("Hello, World!"); + } +} \ No newline at end of file diff --git a/target/classes/com/example/App.class b/target/classes/com/example/App.class new file mode 100644 index 0000000..8a2eb0b Binary files /dev/null and b/target/classes/com/example/App.class differ