a few more gradle fixes

This commit is contained in:
ghidravore 2019-04-29 15:28:16 -04:00
parent 91beac819c
commit 1f82aa5e8e
2 changed files with 1 additions and 10 deletions

View File

@ -18,5 +18,5 @@ dependencies {
compile "net.sf.jung:jung-visualization:2.1.1"
// These have abstract test classes and stubs needed by this module
testCompile project(':Docking').sourceSets.test.output
testCompile project(path: ':Docking', configuration: 'testArtifacts')
}

View File

@ -156,12 +156,3 @@ ext.addExports = { List<String> exports ->
}
}
}
afterEvaluate {
eclipse.classpath.file.whenMerged { classpath ->
classpath.entries.removeAll { ent ->
ent instanceof Library && !ent.path.endsWith('.jar')
}
classpath.entries.findAll { entry -> entry.kind == 'lib' }*.exported = true
}
}