Создание проекта
This commit is contained in:
commit
7f4a313f02
18
.gitignore
vendored
Normal file
18
.gitignore
vendored
Normal 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
7
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"java.project.sourcePaths": ["src"],
|
||||||
|
"java.project.outputPath": "bin",
|
||||||
|
"java.project.referencedLibraries": [
|
||||||
|
"lib/**/*.jar"
|
||||||
|
]
|
||||||
|
}
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
## AirBomber Advanced Project
|
||||||
|
|
||||||
|
Добро пожаловать в AirBomber Java project. Выберите нужную **лабораторную** из списка веток.
|
5
src/App.java
Normal file
5
src/App.java
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
public class App {
|
||||||
|
public static void main(String[] args) throws Exception {
|
||||||
|
System.out.println("Hello, World!");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user