Skip to content
Snippets Groups Projects
Commit 6afd8826 authored by blackoverlord's avatar blackoverlord
Browse files

fixed output dir in build.gradle

parent 7fa9dc33
No related branches found
No related tags found
No related merge requests found
plugins {
id 'java-library'
id 'com.adarshr.test-logger' version '3.0.0'
id 'eclipse'
}
version = '1.0.8'
......@@ -35,3 +36,16 @@ test {
excludeCategories = ['mslinks.ReadTestData', 'mslinks.WriteTestData', 'mslinks.Examples']
}
}
eclipse {
classpath {
defaultOutputDir = file('build/eclipse-default')
file.whenMerged {
entries.each { entry ->
if (entry.kind == 'src' && entry.hasProperty('output')) {
entry.output = entry.output.replace('bin/', "build/eclipse/")
}
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment