Создание проекта

This commit is contained in:
ShabOl 2023-11-26 16:14:58 +04:00
commit 7f4a313f02
4 changed files with 33 additions and 0 deletions

18
.gitignore vendored Normal file
View File

@ -0,0 +1,18 @@
out
server
node_modules
*.vsix
.DS_Store
.vscode-test
undefined
target
dist
jre
lombok
bin/
.settings
.classpath
.project
test/resources/projects/**/.vscode
test/resources/projects/maven/salut/testGradle
test-temp

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

@ -0,0 +1,7 @@
{
"java.project.sourcePaths": ["src"],
"java.project.outputPath": "bin",
"java.project.referencedLibraries": [
"lib/**/*.jar"
]
}

3
README.md Normal file
View File

@ -0,0 +1,3 @@
## AirBomber Advanced Project
Добро пожаловать в AirBomber Java project. Выберите нужную **лабораторную** из списка веток.

5
src/App.java Normal file
View File

@ -0,0 +1,5 @@
public class App {
public static void main(String[] args) throws Exception {
System.out.println("Hello, World!");
}
}