-
-
Notifications
You must be signed in to change notification settings - Fork 924
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ant must be installed to run rake targets, but we don't use ant anymore #2236
Comments
The error produced when you don't have ant installed is also rather cryptic. Here it is with full trace output: https://gist.github.com/headius/6c6d83229d5a979ae8cf |
The error you get right now looks like this:
(Also, worth mentioning is that if you are using macOS, a simple way to get a working |
Yeah the main thing keeping Ant in the build is that we're using its Java-launching task throughout our test runs. We need a good replacement for that, one that allows us to customize JRuby and Java opts from callers. |
See rakelib/commands.rake for the primary calls to Ant we need to replace. Basically the |
Several of our build targets in rake depend on 'ant' library, for example to exec a subprocess JVM for test runs. This is an additional build dependency above and beyond Maven, and ideally we'd get rid of it or have the bootstrap put ant somewhere we can use it.
The text was updated successfully, but these errors were encountered: