Is there anyway we can add external dependencies into our mendix studio pro + eclipse develpment. I would like to add some custom Java API action which uses following the library. <dependency> <groupId>org.ocpsoft.prettytime</groupId> <artifactId>prettytime</artifactId> <version>4.0.5.Final</version> </dependency>
copy the jar file to your Mendix project /userlib folder
Done!
-Andrej
answered
Andrej Gajduk
0
These jar files should be added to the userlib folder of your Mendix project. In that way you can access these Java classes/APIs in custom Java Actions by importing them with an import command on the top of the Java action.