Archived
0

Init project

This commit is contained in:
2020-05-04 21:21:37 +03:00
commit e3d041de63
11 changed files with 336 additions and 0 deletions

15
build.gradle Normal file
View File

@@ -0,0 +1,15 @@
apply plugin: 'java'
project.group = projectGroup
project.version = projectVersion
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.encoding = 'UTF-8'
}
repositories {
mavenLocal()
mavenCentral()
}