first commit
This commit is contained in:
1
.LCKmain.java~
Normal file
1
.LCKmain.java~
Normal file
@@ -0,0 +1 @@
|
||||
C:\Users\shkim\Desktop\MediThings\RND2PJT\uploadtest\main.java
|
||||
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"java.debug.settings.onBuildFailureProceed": true
|
||||
}
|
||||
9
README.md
Normal file
9
README.md
Normal 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
17
pom.xml
Normal 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>
|
||||
BIN
src/main/java/com/example/App.class
Normal file
BIN
src/main/java/com/example/App.class
Normal file
Binary file not shown.
12
src/main/java/com/example/App.java
Normal file
12
src/main/java/com/example/App.java
Normal 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!");
|
||||
}
|
||||
}
|
||||
BIN
target/classes/com/example/App.class
Normal file
BIN
target/classes/com/example/App.class
Normal file
Binary file not shown.
Reference in New Issue
Block a user