commit cbaf6a980a2ab17b18705c34dbd1ccdc5e2814eb Author: DmitriyMX Date: Tue Aug 27 20:28:44 2019 +0300 initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..176a458 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8b222a5 --- /dev/null +++ b/.gitignore @@ -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/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..a1dba4e --- /dev/null +++ b/build.gradle @@ -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) +} + diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..3a11d98 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'protocol'