You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have no problem to create one runnable jar file based on either s1 or s2, that worked perfectly, thanks for the great work. but how can I make my build.gradle to have 2 set of tasks and generate s1.jar and s2.jar seperately ?
I tried to create task based on jrubyJar, obvious it does not like the idea. and reading through the source code, that does not seem to support it as well.
any suggestion ?
build.gradle
################
plugins {
id "com.github.jruby-gradle.jar" version "2.0.0"
}
repositories {
jcenter()
ruby.gems()
}
dependencies {
jrubyJar "rubygems:???:?.?.?"
}
jrubyJar {
jrubyVersion '9.1.17.0'
from 'lib'
initScript "s1/s1.rb"
}
################
The text was updated successfully, but these errors were encountered:
I have a bunch of scripts which based on same set of library file
I have no problem to create one runnable jar file based on either s1 or s2, that worked perfectly, thanks for the great work. but how can I make my build.gradle to have 2 set of tasks and generate s1.jar and s2.jar seperately ?
I tried to create task based on jrubyJar, obvious it does not like the idea. and reading through the source code, that does not seem to support it as well.
any suggestion ?
The text was updated successfully, but these errors were encountered: