User bio
404 bio not found
Member since Mar 3, 2020
Posts:
Replies:
That means the jar files will be available to the java code during runtime, which works. During development of the java code, I just added the jar files in maven with a scope of system, which should solve my problem.
Thank you for the quick response!
Certifications & Credly badges:
Adam has no Certifications & Credly badges yet.
Global Masters badges:
Adam has no Global Masters badges yet.
Followers:
Adam has no followers yet.
Following:
Adam has not followed anybody yet.
As I have continued to work on developing java code for PEX, using the workflow as described in the InterSystems book that can be found here, I think it would add a lot of value for you to store the jars in a public maven repository such as Maven Central . The reason is that we develop the java classes outside of InterSystems first, again per the workflow recommended by InterSystems. Without them being in a repo for maven to download, we have a couple options to work around this, which are all ugly:
The first option is the best as anyone can then download my project from version control (git, svn, etc...) and have all the needed files. With the system scope set in the pom for these jars, the jars will not be included in the built jar. This, unfortunately, is a deprecated maven function. As more InterSystems customers start using PEX, I think having them in a public repository will add a lot of business value for InterSystems.