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'm trying to upgrade a legacy Maven project that calls Ruby scripts as part of the build. The project doesn't work on Windows because it directly references .rb files. I tried using the gem-maven-plugin version 0.25.1 (because 0.27.0 is broken; see issue 11) with e.g.:
Unfortunately the plugin thinks that the whole thing is a file and tries to open it, giving a file-not-found error. The second part is actually a command-line parameter, but I didn't see any options for adding a parameter. Is there such an option---or can one be added?
The text was updated successfully, but these errors were encountered:
mvn de.saumya.mojo:gem-maven-plugin:0.25.1:help -Ddetail -Dgoal=exec
will give you an overview of the possible parameters you can use.
there is a command parameter which is used by ALL jruby maven plugins goals: 'args' either as command line property or as configuration parameter within the pom.
I'm trying to upgrade a legacy Maven project that calls Ruby scripts as part of the build. The project doesn't work on Windows because it directly references .rb files. I tried using the gem-maven-plugin version 0.25.1 (because 0.27.0 is broken; see issue 11) with e.g.:
${project.basedir}/bin/autopatch.rb ${test.config}
Unfortunately the plugin thinks that the whole thing is a file and tries to open it, giving a file-not-found error. The second part is actually a command-line parameter, but I didn't see any options for adding a parameter. Is there such an option---or can one be added?
The text was updated successfully, but these errors were encountered: