This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOCACHE~~ ====== ProM 6 nightly builds ====== **...for the brave and the impatient** Here you can find the 10 latest nightly builds for the ProM framework. Apart from that, we keep the current version of the ProM API documentation (javadoc) accessible. {{ ::nightlybuild.jpg?direct&600 |}} Be aware that builds offered here represent the nightly snapshot from the developer code base. It may not be able to compile, fail to run, return unexpected results, hell, it may even erase your hard disk for good and send spam email to your boss with your signature. You have been warned. ===== New: Icons and URLs for plug-ins ===== :!: As of Monday October 29, 2018, the plug-in annotations allows for an icon (like ''icon = my_image.png'') and a URL (like ''url = http://www.promtools.org''). If an icon is provided for a plug-in, this icon will be shown at two places in the ProM action view: - At the far right-hand side of the corresponding action in the action list, max. size is 100px wide by 50px high. - At the far right-hand side of the **plugin action info** if the corresponding action is selected by the user, max. size = 200px wide by 100 px high. If a URL is also provided, then the second icon (the one in the ** plugin action info**) will be clickable, and clicking it will open the default web browser with the provided URL. ProM will look for the icon in the ''lib/images'' folder. So, you need to put your icon into that folder. This may require a change in your ''build.xml'' file. If you use ivy to resolve external libraries into the ''lib'' folder (''ivy:retrieve'' with ''conf="lib"''), then you need to set ''sync'' to ''false'', as setting ''sync'' to ''true'' would cause ivy to remove the ''images'' folder from your ''lib'' folder. As an example: <target name="resolve"> <ivy:retrieve type="jar,bundle" sync="true" /> <ivy:retrieve pattern="lib/[artifact]-[revision].[ext]" conf="lib" type="jar,bundle" sync="false" /> </target> ===== New: Relative URLs in Package Repository ===== :!: As of Tuesday July 17, 2018, the package repository for the ProM Nightly Build contains relative URLs. Before that date, the repository contained only absolute URLs. You need a ProM Nightly Build from a later date, or at least version 6.9.70 of the ProM Framework, to be able to handle these relative URLs properly. Earlier versions of the ProM Nightly Build, and earlier versions of the ProM Framework, will not be able to handle the new repository with relative URLs. ===== Links ===== <php> echo('<ul>'); $files = glob("prom6/nightly/*.tar.gz"); for ($i = 1; $i <= 10; $i++) { $nightly_file = $files[count($files)-$i]; if(file_exists($nightly_file)) { $nightly_file_date = 'Nightly build of '.date("l, d.m.Y, H:i:s", filemtime($nightly_file)); $nightly_doc_date = 'Javadoc of '.date("l, d.m.Y, H:i:s", filemtime("prom6/nightly/doc")); $nightly_file_targz = '<a onClick="_gaq.push([\'_trackEvent\', \'Download\', \'ProM 6.Nightly\', \'Tar archive\']);" href="'.$nightly_file.'">' . $nightly_file_date. '</a>'; $nightly_javadoc = '<a href="prom6/nightly/doc/">' . $nightly_doc_date . '</a>'; } echo('<li>' . $nightly_file_targz . '</li>'); } echo('<li>' . $nightly_javadoc . '</li>'); echo('</ul>'); </php> ===== Installation Instructions ===== - Download the latest nightly build, say ''ProM-nightly-YYYYMMDD-1.X.tar.gz'', and save it in some local folder. - Extract the ''ProM-nightly-YYYYMMDD-1.X.tar.gz'' archive. The archive is a gzipped tar archive, so extracting might require two stages: one the extract the ''ProM-nightly-YYYYMMDD-1.X.tar'' file from the ''ProM-nightly-YYYYMMDD-1.X.tar.gz'' file, and one to extract the ''ProM-nightly-YYYYMMDD-1.X'' folder from the ''ProM-nightly-YYYYMMDD-1.X.tar'' file. - Go into the unpacked ''ProM-nightly-YYYYMMDD-1.X'' folder. - Run the ProM Package Manager from there (using either the ''PackageManager.bat'' file or the ''PackageManager.sh'' file). - Install the packages you want to use. If you are not sure, install ''RunnerUpPackages''. - Close the ProM Package Manager. - Run ProM (using either the ''ProM.bat'' file or the ''ProM.sh'' file). Show page