added eclipse output dirs bin/main and bin/test to gitignore, and ignore them when creating tar file

pull/19/head
Stefan Feuerhahn 5 years ago
parent cbac75d770
commit 9fc7d2376c

2
.gitignore vendored

@ -12,3 +12,5 @@ out/
.project
.classpath
.metadata/
**/bin/main/
**/bin/test/

@ -42,6 +42,8 @@ tasks.register<Tar>("tar") {
include("LICENSE.txt")
include("doc/**")
include("bin/**")
exclude("bin/main/")
exclude("bin/test/")
include("gradle/wrapper/**")
include("gradlew")
include("gradlew.bat")

Loading…
Cancel
Save