Written by

Software Architect at Visum
Question Yuri Marx · Nov 1, 2020

Where is PEX jar file can be found?

PEX Java classes are not in the maven public repository, so I need to download pex jar file. Where is PEX jar file can be found to download?

Comments

Eduard Lebedyuk · Nov 1, 2020

In Docker it's as easy as

ENV GWDIR /jgw
ENV ISC_PACKAGE_INSTALLDIR /usr/irissys
ENV ISC_JARDIR $ISC_PACKAGE_INSTALLDIR/dev/java/lib/JDK18

COPY --from=store/intersystems/iris-community:2020.2.0.211.0 \
     $ISC_JARDIR/intersystems-gateway-3.1.0.jar \
     $ISC_JARDIR/intersystems-jdbc-3.1.0.jar \
     $ISC_JARDIR/intersystems-utils-3.1.0.jar \
     $ISC_PACKAGE_INSTALLDIR/dev/java/lib/gson/gson-2.8.5.jar \
     $GWDIR/

You can check this article for more details.

0
Yuri Marx  Nov 1, 2020 to Eduard Lebedyuk

This is the problem. The jar files cannot be used from Java dependency system (maven), only from docker.

0
Evgeny Shvarov  Nov 1, 2020 to Yuri Marx

If we host it in the repository until it'd be published on maven, will it solve the issue temporarily? Like here.

0
Yuri Marx  Nov 1, 2020 to Evgeny Shvarov

If the repository be public and not ask wrc password,Yes. Your link returned 404

0
Evgeny Shvarov  Nov 2, 2020 to Yuri Marx

Double copy-n-paste. Fixed the link.

0
Yuri Marx  Nov 6, 2020 to Evgeny Shvarov

Thanks!

0