Jython 実行時、Cannot import site module and ...

Jython 実行時、以下のエラー
ImportError: Cannot import site module and its dependencies: No module named site
Determine if the following attributes are correct:
* sys.path: ['C:\\Users\\xxxxx\\.m2\\repository\\org\\python\\jython\\2.7.0\\Lib', '__classpath__', '__pyclasspath__/']
This attribute might be including the wrong directories, such as from CPython
* sys.prefix: C:\Users\xxxxx\.m2\repository\org\python\jython\2.7.0
This attribute is set by the system property python.home, although it can
be often automatically determined by the location of the Jython jar file

Jython のバグもあるので、
Issue 2355: Jython fails to import python modules from Lib when embedded in an eclipse plug-in - Jython tracker
jython-standalone version 2.7.1 を使ってるはずなんだけど、、、
と思ったら、同じプロジェクト内で、帳票出力用のライブラリ Jasperreports が組み込むライブラリ
batik-bridge :=バーコードのSVG描画で使われてる。
これが依存する batik-script が、jython-2.7.0 に依存しているのだ。
これは、batik-bridge バージョン 1.9.1 でこの依存関係である。
batik-bridge から jython-2.7.0 を参照しないようにすれば、解決はする。

<dependency>
   <groupId>org.apache.xmlgraphics</groupId>
   <artifactId>batik-bridge</artifactId>
   <version>1.9.1</version>
   <exclusions>
      <exclusion>
         <groupId>org.python</groupId>
         <artifactId>jython</artifactId>
      </exclusion>
   </exclusions>
</dependency>

これでも良いのだが、
batik-bridge 1.9.1 は、2017-7-26 に公開された後、
バージョン 1.10 が、2018-5-11 に Maven セントラルリポジトリに上がってる。
この バージョン 1.10 なら、jython-2.7.0 に依存していないので、

<dependency>
   <groupId>org.apache.xmlgraphics</groupId>
   <artifactId>batik-bridge</artifactId>
   <version>1.10</version>
</dependency>

こちらの方が良いだろう。