Skip to content

metaborg/spoofax.gradle

Repository files navigation

GitHub license Jenkins Release Artifact

Spoofax Gradle

Spoofax Gradle is a Gradle plugin for building and using Spoofax language specifications.

Requirements

Gradle 6.1 or higher is required. The following code snippets assume you are using Gradle with Kotlin, but should be translatable to Groovy as well.

Prerequisites

The Spoofax Gradle plugin is not yet published to the Gradle plugins repository. Therefore, to enable the plugin, add our repository to your settings.gradle.kts file:

pluginManagement {
  repositories {
    maven("https://artifacts.metaborg.org/content/repositories/releases/")
  }
}

Spoofax version

Due to the complex nature of language development and Spoofax's API, this plugin only works with the single version of Spoofax it was built for. The supported Gradle versions have also changed over time. The following table lists the supported versions:

Spoofax Gradle Plugin Spoofax Gradle
0.3.6-0.3.10 2.5.9 5.3-6.9.2
0.4.0-0.4.1 2.5.10 5.3-6.9.2
0.4.2-0.4.4 2.5.11 5.3-6.9.2
0.4.5-0.4.9 2.5.12 5.3-6.9.2
0.5.0 2.5.14 5.3-6.9.2
0.5.1 2.5.15 5.3-6.9.2
0.5.2 2.5.16 5.3-6.9.2
0.5.3-0.5.6 2.5.16 6.1+
0.5.7-latest 2.5.18 6.1+

The latest version of the plugin can be found at the top of this readme.

Building and testing a language specification

Apply the langspec plugin to a project (a build.gradle.kts file) as follows:

plugins {
  id("org.metaborg.spoofax.gradle.langspec") version("0.5.8")
}

The plugin uses your metaborg.yaml file to configure the build. When running the build task for this project, the Spoofax Gradle plugin will build your language specification. The plugin can be customized using the spoofaxLanguageSpecification extension.

If you have any SPT files in your language, the plugin will automatically run those against your built language specification. This behaviour can be disabled if desired:

spoofaxLanguageSpecification {
  runTests.set(false)
}

If you also want to build the example files of your language, enable the following setting:

spoofaxLanguageSpecification {
  buildExamples.set(true)
  examplesDir.set("examples")
}

The Spoofax Gradle plugin will automatically create a publication for the build language implementation, which can be published with Gradle's publishing plugins. This behaviour can be disabled if desired:

spoofaxLanguageSpecification {
  createPublication.set(false)
}

Finally, the Stratego format can be overridden, enabling developing using ctree while building with jar:

spoofaxLanguageSpecification {
  strategoFormat.set(org.metaborg.spoofax.meta.core.config.StrategoFormat.jar)
}

Making dependencies

The plugin reads your metaborg.yaml file and creates dependencies to the corresponding language implementations. Therefore, in most cases, dependencies do not have to be specified in Gradle. However, if you require compile dependency on a language implementation in the same multi-project build, a project dependency needs to be added as follows:

dependencies {
  compileLanguage(project(":my.lang"))
}

Likewise, for source dependencies in the same multi-project build, use:

dependencies {
  sourceLanguage(project(":my.lang"))
}

Using a language implementation

Built language implementations can be used to build/test examples, or to apply the compiler of your language to a Gradle project.

Apply the project plugin to a project (a build.gradle(.kts) file) as follows:

plugins {
  id("org.metaborg.spoofax.gradle.project") version("0.5.8")
}

The plugin uses your metaborg.yaml file to configure the build. When running the build task for this project, the Spoofax Gradle plugin will run the compiler for all languages to which you have a compile dependency.

If the java plugin is enabled for this project, the Spoofax Gradle plugin will run before Java compilation. Therefore, if your language generates Java files in a Java source set, the Java compiler will pick up these files and compile them, enabling Java-generating DSLs.

Separately testing a language specification

A language specification can be tested with SPT files in the same project. However, it is also possible to test a language specification with tests in a separate project.

Apply the test plugin to a project (a build.gradle.kts) file) as follows:

plugins {
  id("org.metaborg.spoofax.gradle.test") version("0.5.8")
}

Set the language-under-test as follows:

spoofaxTest {
  languageUnderTest.set(org.metaborg.core.language.LanguageIdentifier.parse("org.example:my.lang:0.1.0-SNAPSHOT"))
}

This language probably comes from another project in a multi-project build, so you will need to add a project dependency as explained earlier:

dependencies {
  compileLanguage(project(":my.lang"))
}

Examples

The example directory of this repository has several examples using this plugin.