0

initial commit

This commit is contained in:
2019-08-27 20:28:44 +03:00
commit cbaf6a980a
4 changed files with 55 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
* text=auto

23
.gitignore vendored Normal file
View File

@@ -0,0 +1,23 @@
## IDEA ##
.idea/
out/
*.iml
*.ipr
*.iws
*.ids
## ECLIPSE ##
.settings/
bin/
.classpath
.project
## GRADLE ##
.gradle/
build/
gradle/
gradlew
gradlew.bat
## MAVEN ##
target/

30
build.gradle Normal file
View File

@@ -0,0 +1,30 @@
group = 'mc-project'
version = '0.0-SNAPSHOT'
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.encoding = 'UTF-8'
}
ext {
slf4j_version = '1.7.25'
lombok_version = '1.18.2'
}
dependencies {
/* LOGGER */
compile (group: 'org.slf4j', name: 'slf4j-api', version: slf4j_version)
/* LOMBOK */
annotationProcessor (group: 'org.projectlombok', name: 'lombok', version: lombok_version)
compileOnly (group: 'org.projectlombok', name: 'lombok', version: lombok_version)
}

1
settings.gradle Normal file
View File

@@ -0,0 +1 @@
rootProject.name = 'protocol'