Skip to content
Snippets Groups Projects
Commit 1db7dd40 authored by anttil's avatar anttil
Browse files

SSDM-1725: remove duplicate javax.servlet classes from eclipse classpath

SVN: 33857
parent 6de8b601
No related branches found
No related tags found
No related merge requests found
......@@ -291,7 +291,12 @@ eclipse.classpath.file {
def projectRefs = classpath.entries.findAll{entry -> entry.kind =='src' && entry.path.startsWith('/')}
classpath.entries.removeAll(projectRefs)
classpath.entries.addAll(projectRefs)
}
gwtlib = classpath.entries.findAll {entry -> entry.path.contains('gwt-user')}
if (gwtlib.size() == 1) {
gwtlib.get(0).path = gwtlib.get(0).path.replace('gwt-user', 'gwt-user-eclipse')
}
}
}
task testJar(type: Jar, dependsOn: testClasses) {
......
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