Skip to content

Commit

Permalink
merge packing issue fix from master
Browse files Browse the repository at this point in the history
  • Loading branch information
paulk-asert committed Jun 26, 2012
1 parent 26ac841 commit ab8f9eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/assemble.gradle
Expand Up @@ -254,8 +254,8 @@ ext.distSpec = copySpec {
from({
configurations.runtime.findAll { it.name.endsWith 'jar' } +
modules()*.jar.archivePath +
subprojects.configurations.runtime*.findAll {
it.name.endsWith('jar') && !it.name.contains('livetribe-jsr223')
modules().configurations.runtime*.findAll {
it.name.endsWith('jar') && !it.name.contains('livetribe-jsr223') && !it.name.matches(/groovy-\d.*/)
}.flatten() as Set
})
}
Expand All @@ -275,7 +275,7 @@ ext.distSpec = copySpec {
from("src/bin") {
filter(ReplaceTokens, tokens: [GROOVYJAR:jar.archiveName])
fileMode = 0755
ext.exclude = "groovy.icns"
exclude "groovy.icns"
}
from("src/bin/groovy.icns")
from("src/tools/org/codehaus/groovy/tools/groovy.ico")
Expand Down

0 comments on commit ab8f9eb

Please sign in to comment.