Skip to content


MontiCore - Language Workbench And Development Tool Framework

General disclaimer

(Repeated from the BSD 3 Clause license):

This software is provided by the copyright holders and contributors "as is" and any expressed or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright holder or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services, loss of use, data, or profits, or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.

Included Software

This product includes the following software: * AntLR * FreeMarker

Contribution

When you want to contribute: Please make sure that your complete workspace only uses UNIX line endings (LF) and all files are UTF-8 without BOM. On Windows, you should configure git to not automatically replace LF with CRLF during checkout by executing the following configuration:

git config --global core.autocrlf input

Build MontiCore

MontiCore is currently built using Gradle.

Please note that from the top level build script, not everything is built and all tests executed. It is a deliberate decision, to exclude some of the longer lasting tasks.

  • build the productive code (including the unit tests, ~8 min)
  • gradle buildMC
  • skipping the unit tests: gradle assembleMC
  • run integration tests (which are not included in the unit tests, ~30 min)
  • all integration tests
    • gradle testIT
  • Integration tests of the generator:
    • gradle -p monticore-test/it build
  • EMF Integration tests of the generator (only test collection not included in testIt):
    • gradle -p monticore-test/it build -PbuildProfile=emf
  • Experiments (from the Handbook) as integration tests:
    • gradle -p monticore-test/01.experiments build and
    • gradle -p monticore-test/02.experiments build
  • Grammar integration tests:
    • gradle -p monticore-test/monticore-grammar-it build
  • clean:
  • call gradle clean
  • cleaning integration tests:
    • using gradle gradle clean within the corresponding subproject (see above)

Further Information