File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ task createBaseXml(dependsOn: configurations.corelibs) {
179179 jmeJarFiles. each{jarFile ->
180180 ZipFile file = new ZipFile (jarFile)
181181 file. entries(). each { entry ->
182- if (entry. name. endsWith(' .class' )){
182+ if (! entry . name . startsWith( ' META-INF ' ) && entry. name. endsWith(' .class' )){
183183 // TODO: "/" works on windows?
184184 def pathPart = entry. name. substring(0 , Math . max(0 , entry. name. lastIndexOf(' /' )))
185185 def classPath = pathPart. replace(' /' ,' .' );
@@ -195,7 +195,7 @@ task createBaseXml(dependsOn: configurations.corelibs) {
195195 externalJarFiles. each{jarFile ->
196196 ZipFile file = new ZipFile (jarFile)
197197 file. entries(). each { entry ->
198- if (entry. name. endsWith(' .class' )){
198+ if (! entry . name . startsWith( ' META-INF ' ) && entry. name. endsWith(' .class' )){
199199 // TODO: "/" works on windows?
200200 def pathPart = entry. name. substring(0 , Math . max(0 , entry. name. lastIndexOf(' /' )))
201201 def classPath = pathPart. replace(' /' ,' .' );
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ jmeVersion = 3.6.0
33# Version used for application and settings folder, no spaces!
44jmeMainVersion = 3.6
55# Version addition pre-alpha-svn, Stable, Beta
6- jmeVersionTag = beta3
6+ jmeVersionTag = stable
77# Increment this each time jmeVersionTag changes but jmeVersion stays the same
88# jmeVersionTagID = 0
99
You can’t perform that action at this time.
0 commit comments