first commit

This commit is contained in:
2026-01-02 16:07:20 +09:00
commit 913c51738a
7 changed files with 42 additions and 0 deletions

1
.LCKmain.java~ Normal file
View File

@@ -0,0 +1 @@
C:\Users\shkim\Desktop\MediThings\RND2PJT\uploadtest\main.java

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"java.debug.settings.onBuildFailureProceed": true
}

9
README.md Normal file
View File

@@ -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).

17
pom.xml Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>uploadtest</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

Binary file not shown.

View File

@@ -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!");
}
}

Binary file not shown.