To prevent spam users, you can only post on this forum after registration, which is by invitation. If you want to post on the forum, please send me a mail (h DOT m DOT w DOT verbeek AT tue DOT nl) and I'll send you an invitation in return for an account.

Run a plug-in without installing Eclipse

Hi, 
is there a way to import a plug-in to ProM 6 (from https://svn.win.tue.nl/repos/prom/Packages/) that is not included in the package manager, without installing Eclipse?

Thanx!

Comments

  • hverbeek
    edited April 2016
    )Yes, there is way.

    I'm assuming that you're using a Nightly Build, as you mention the repository of the Nightly Builds (https://svn.win.tue.nl/repos/prom/Packages/).

    If you have a MyPlugins.jar file that contains plug-ins, then you can add this MyPlugins.jar file to the dist folder in the folder where the ProM Nightly Build is located. Then you can add a line to the ProM.bat file as the following snippet shows:

    :start
    @set X=.\dist\ProM-Framework.jar
    @set X=%X%;.\dist\ProM-Contexts.jar
    @set X=%X%;.\dist\ProM-Models.jar
    @set X=%X%;.\dist\ProM-Plugins.jar
    @set X=%X%;.\dist\MyPlugins.jar

    The last line has been added to ensure that the MyPlugins.jar file is in the classpath. If you now start ProM, then the plug-ins in the MyPlugins.jar file will be found.

    Kind regards,

    Eric.
  • Thank you Eric!
    I had some problems with the  -XX:+UseCompressedOops JVM option, but removing it seems to solve them!
    Best,

  • For this option, you need to run Java in server mode (java -server). This mode should be the default on modern 64 bit computers, but this mode is not available on 32 bit computers. In that case, you indeed need to remove this option, as the client mode Java does not recognize this option and fail to create the VM as a result.
Sign In or Register to comment.