Skip to content

Commit

Permalink
SYMMETRIC-PRO: Fix Eclipse classpath for running Symmetric-Pro in dev
Browse files Browse the repository at this point in the history
environment.
  • Loading branch information
philipmarzullo64 committed Jun 10, 2019
1 parent 34b580a commit 2ea04f5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions symmetric-assemble/common.gradle
Expand Up @@ -86,6 +86,14 @@ subprojects { subproject ->
classpath {
downloadSources = true
downloadJavadoc = false

file {
whenMerged { classpath ->
def list = classpath.getEntries()
list.removeAll { it.kind=='lib' && it.path.contains('javax.validation') && it.path.contains('validation-api') }
classpath.setEntries(list)
}
}
}

jdt {
Expand Down Expand Up @@ -279,4 +287,5 @@ subprojects { subproject ->
delete wstFacetXml
}
}

}

0 comments on commit 2ea04f5

Please sign in to comment.