Stripped down JRuby.jar?

Hi, we were looking into using the UnmarshallStream class from the
Jruby.jar within out java web application and realized that the jar
contains some third party library which are getting in conflicts with
out own dependencies (e.g.: joda time)

Is there a jar that contains only the Jruby functionality without the
3rd party libs ?

I found out that there is a jruby-complete.jar but this one is even
bigger.

Thanks

Sylvain

you can use

depending on your “dependency tool” you have certain amount of freedom
to
exclude and/or overwrite dependencies from jruby.

maybe that helps.

  • christian

PS joda-time is needed the moment you want to marshal/unmarshal Date,
DateTime, Time objects

Thanks for you reply,

When using the latest jruby versions the issue disappear , it looks like
all self-contained packages are now under org.jruby.
Problem solved.

Thanks

Sylvain

From: christian <[email protected]mailto:[email protected]>
Reply-To: “[email protected]mailto:[email protected]
<[email protected]mailto:[email protected]>
Date: Tuesday, March 18, 2014 at 1:46 PM
To: “[email protected]mailto:[email protected]
<[email protected]mailto:[email protected]>
Subject: Re: [jruby-user] Stripped down JRuby.jar ?

you can use

depending on your “dependency tool” you have certain amount of freedom
to exclude and/or overwrite dependencies from jruby.

maybe that helps.

  • christian

PS joda-time is needed the moment you want to marshal/unmarshal Date,
DateTime, Time objects

On Tue, Mar 18, 2014 at 5:39 PM, Boily, Sylvain
<[email protected]mailto:[email protected]> wrote:
Hi, we were looking into using the UnmarshallStream class from the
Jruby.jar within out java web application and realized that the jar
contains some third party library which are getting in conflicts with
out own dependencies (e.g.: joda time)

Is there a jar that contains only the Jruby functionality without the
3rd party libs ?

I found out that there is a jruby-complete.jar but this one is even
bigger.

Thanks

Sylvain