From a6ae1323d270cbb9719edd2aa3f63bcc36f4d2bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Heredero?= Date: Thu, 14 Apr 2022 13:42:24 +0200 Subject: [PATCH] initial commit --- .vscode/settings.json | 7 +++++++ README.md | 18 ++++++++++++++++++ bin/App.class | Bin 0 -> 562 bytes src/App.java | 5 +++++ 4 files changed, 30 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 README.md create mode 100644 bin/App.class create mode 100644 src/App.java diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e112a70 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..7c03a53 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +## Getting Started + +Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code. + +## Folder Structure + +The workspace contains two folders by default, where: + +- `src`: the folder to maintain sources +- `lib`: the folder to maintain dependencies + +Meanwhile, the compiled output files will be generated in the `bin` folder by default. + +> If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there. + +## Dependency Management + +The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies). diff --git a/bin/App.class b/bin/App.class new file mode 100644 index 0000000000000000000000000000000000000000..a22813007d0e11d35e7b8449da1ec518c531308a GIT binary patch literal 562 zcmZuu%T5A85UhcPg%t!r@U7q@L1W~|0b^o}#sg6k3?4iUFu@_qE?E|%pQQ&)Joo{A zl(806Lc(FYr>A@IrTf}MvhI7@=~M$5>-?#u`o4CZfr*SjcGC5a#IcCHiQJU!`t!h7y#$u9Ov~<& z6XeDc+AZIZ-=~U_y=n}r0?A8d+wNiE&h_ke(ZV`5O>F$hO}|KB3k3nQACTBIpDWGw zZb+}gQL{5f<6w1n=(W^^4mK6zGLC}DPz2rbj{qT_xL8J$Rhd~ZM-JW*dl|tNV*rES z9AjeKz?@_i$2?LbN%L$FSs2k&Mzlm1dnx0y~T$?EV06 C)^YCu literal 0 HcmV?d00001 diff --git a/src/App.java b/src/App.java new file mode 100644 index 0000000..0a839f9 --- /dev/null +++ b/src/App.java @@ -0,0 +1,5 @@ +public class App { + public static void main(String[] args) throws Exception { + System.out.println("Hello, World!"); + } +}