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?

1
2 238
Discussion (9)1
Log in or sign up to continue

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.

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

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

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