Skip to content

Commit 4be47b0

Browse files
committed
POM: switch to jython-standalone JAR
Both jython and jython-standalone are (unfortunately) uber-JARs with unshaded dependencies. The difference is that jython-standalone also has the crucial Lib/ directory for core Python packages, as well as quite a few packageless classes not found in the stock jython JAR, which are presumably necessary in certain circumstances. While ideally we would depend on a granular jython JAR file that does not have _any_ embedded dependencies, for the time being, to fix problems with Jython scripts that want to use core Python packages, we need to depend on jython-standalone instead. Hopefully, this changes addresses Fiji bug 890: http://fiji.sc/bugzilla/show_bug.cgi?id=890
1 parent 17fc3e6 commit 4be47b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<!-- Third-party dependencies -->
9191
<dependency>
9292
<groupId>org.python</groupId>
93-
<artifactId>jython</artifactId>
93+
<artifactId>jython-standalone</artifactId>
9494
<version>2.5.3</version>
9595
</dependency>
9696

0 commit comments

Comments
 (0)