Update Gradle & gitignore

-Added: Simple Code Generator
This commit is contained in:
2021-01-11 17:53:30 +01:00
parent 069e10a8f0
commit d1935399a4
21 changed files with 25 additions and 980 deletions
+11
View File
@@ -6,10 +6,21 @@ tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
eclipse {
classpath {
downloadJavadoc = true
downloadSources = true
}
}
repositories {
jcenter()
flatDir {
dirs '/libs'
}
}
dependencies {
compile 'SimpleCodeGenerator:Simple Code Generator:1.0'
testImplementation 'junit:junit:4.12'
}