AsciiMathML based expression editor. Cameo MDK Expression is a plugin for Cameo Systems Modeler and other No Magic environment bundles.
- Cameo Systems Modeler (CSM) or another No Magic environment bundle that includes the SysML plugin
- The latest Cameo MDK Expression version is tested with and supports 19.0 SP3. Compatibility for previous versions of Cameo MDK Expression can be found in the compatibility matrices.
-
Download the Cameo MDK Expression plugin, e.g.
mdk-expression-*-plugin.zip
. -
Run CSM. From the main menu, select "Help" > "Resource/Plugin Manager".
-
Click "Import", navigate to the downloaded Cameo MDK Expression plugin, and click "Open".
-
CSM should confirm installation with the following prompt.
-
Restart CSM. To check installation, select from the main menu "Help" > "Resource/Plugin Manager" > "Plugins (no cost)" and ensure a row exists for "MDK Expression" and its status is "Installed" with the correct version.
Cameo MDK Expression can also be installed headlessly by simply unzipping the plugin archive into the directory that CSM is installed in.
Documentation can be accessed online or offline in CSM from the main menu "Help" > "Other Documentation" > "MDK [...] UserGuide".
Cameo MDK Expression is a Java project that uses the Gradle build tool. It can be imported as a Gradle project in IDEs like IntelliJ and Eclipse.
./gradlew dependencies
will download all necessary dependencies../gradlew assemble
will compile the plugin from source../gradlew distZip
will package the installable plugin../gradlew installDist
will install the plugin in a staging environment../gradlew runJava
will interactively run CSM with the plugin installed from the staging environment.
Task dependencies are declared such that all necessary prerequisites are executed/cached, e.g. runJava
will first dependencies
, assemble
, distZip
, etc.