Closed rtyler closed 9 years ago
having the JRubyJar
from #47 we also need to "extend" project to allow
jrubyJar {
jruby {
initScript( 'app.rb' )
}
}
but on top we want to build "libraries" like
jar {
jruby {
defaultGems( 'app.rb' )
}
}
the first on is similar to what we have with jrubyExec
but the second needs to extend or configure the Jar
tasks to include those extra resources
fixed with #47
With @mkristian's recent changes being merged, it is now impossible to build a
jrubyJar
(fat jar) without also producing a jar artifact.This dependency link should be broken and the
jrubyJar
task should be able to contruct its tree on its own without requiring that thejar
task also execute.In effect, I should be able to disable the
jar
task and still executejrubyJar