I want to include Jython in Mutant [http://mutant.tinkerpop.com]. I know that Chris Deihl would like that. The problem is that the Jython that is in
http://repo1.maven.org/maven2/
...is only Jython 2.5.0 -- http://repo1.maven.org/maven2/org/python/jython/
The Jython ScriptEngine is packaged with Jython 2.5.1+. :( If someone can build the latest Jython, I can stick the pom.xml and jars into TinkerPop Maven2 repository and then connect Mutant to it.
Anyone?
Thanks,
Marko.
<repositories>
<repository>
<id>fortytwo</id>
<name>fortytwo.net Maven repository</name>
<url>http://fortytwo.net/maven2</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
<version>2.5.1</version>
</dependency>
</dependencies>
Josh