Skip to content

Commit

Permalink
Fix README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderpann committed Jan 19, 2023
1 parent 8b63f0c commit ec8074e
Showing 1 changed file with 21 additions and 22 deletions.
43 changes: 21 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,27 @@ Parameters:
in scenarios like containerized build agents where the OS reported memory limit is not the maximum
to be consumed by the container. The value is a string understood by the JVM command line argument `-Xmx` e.g. `3G` or `512M

### Additional Plugins

By default only the minimum required set of plugins are loaded. This includes base language and some utilities like the
HTTP server from MPS. If your project requires additional plugins to be loaded this is done by setting plugin location
to the place where your jar files are placed and adding your plugin id and folder name to the `plugins` list:

```
apply plugin: 'modelcheck'
...
modelcheck {
pluginLocation.set(new File("path/to/my/plugins"))
plugins.set([new Plugin("com.mbeddr.core", "mbeddr.core")])
projectLocation.set(new File("./mps-prj"))
mpsConfig.set(configurations.mps)
}
```

Dependencies of the specified plugins are automatically loaded from the `pluginlocation` and the plugins directory of
MPS. If they are not found the the build will fail.

## Run migrations

Expand Down Expand Up @@ -366,28 +387,6 @@ Parameters:

At least `mpsConfig` or `mpsLocation` + `mpsVersion` must be set.

### Additional Plugins

By default only the minimum required set of plugins are loaded. This includes base language and some utilities like the
HTTP server from MPS. If your project requires additional plugins to be loaded this is done by setting plugin location
to the place where your jar files are placed and adding your plugin id and folder name to the `plugins` list:

```
apply plugin: 'modelcheck'
...
modelcheck {
pluginLocation.set(new File("path/to/my/plugins"))
plugins.set([new Plugin("com.mbeddr.core", "mbeddr.core")])
projectLocation.set(new File("./mps-prj"))
mpsConfig.set(configurations.mps)
}
```

Dependencies of the specified plugins are automatically loaded from the `pluginlocation` and the plugins directory of
MPS. If they are not found the the build will fail.

## Download JetBrains Runtime

When building MPS projects with the JatBrains Runtime, the JDK/JRE used by MPS and other intellij based IDEs, it's
Expand Down

0 comments on commit ec8074e

Please sign in to comment.