JSR-223 provider from maven?

Hi,

Does anyone happen to know if the JRuby JSR-223 provider is available
through the maven repositories? If so, what are the group and
artifact IDs?

Thanks,
Kevin


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email

Hi Kevin,

On Mon, Oct 5, 2009 at 9:54 AM, Kevin M. [email protected] wrote:

Does anyone happen to know if the JRuby JSR-223 provider is available
through the maven repositories? If so, what are the group and
artifact IDs?

Recently released JRuby 1.4.0RC1 has JRuby Embed (Red Bridge) based
JSR223 implementation, so you don’t need to add extra dependency to
your pom.xml. If you want to write dependecy of JRuby Embed, you can
write as in below:

<repository>
  <id>codehaus</id>
  <name>Codehaus Repository</name>
  <releases>
    <enabled>true</enabled>
  </releases>
  <snapshots>
    <enabled>false</enabled>
  </snapshots>
  <url>http://repository.codehaus.org</url>
</repository>

<dependency>
  <groupId>org.jruby.embed</groupId>
  <artifactId>jruby-embed</artifactId>
  <version>0.1.2</version>
</dependency>

If you want the implementation released at scripting.dev.java.net, it
is in java.net maven repo.

<repository>
  <id>maven2-repository.dev.java.net</id>
  <name>Java.net Repository for Maven</name>
  <url>http://download.java.net/maven/2/</url>
  <layout>default</layout>
</repository>

<dependency>
  <groupId>com.sun.script.jruby</groupId>
  <artifactId>jruby-engine</artifactId>
  <version>1.1.7</version>
</dependency>

-Yoko


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email