Skip to content

Commit

Permalink
Mark MpsCheck and MpsExecute as incubating
Browse files Browse the repository at this point in the history
  • Loading branch information
sergej-koscejev committed Dec 20, 2023
1 parent 429eef3 commit 0a05207
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
In order to properly support up-to-date checking and caching, task outputs have to be specified (see
[Incremental build](https://docs.gradle.org/current/userguide/incremental_build.html) in the Gradle documentation).

### Changed

- `MpsCheck` and `MpsExecute` (together with `MpsGenerate`) marked as incubating. They may experience some breaking
changes in future releases.

## 1.21.2

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/de/itemis/mps/gradle/tasks/MpsCheck.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import de.itemis.mps.gradle.ErrorMessages
import de.itemis.mps.gradle.launcher.MpsBackendBuilder
import de.itemis.mps.gradle.launcher.MpsVersionDetection
import org.gradle.api.GradleException
import org.gradle.api.Incubating
import org.gradle.api.file.*
import org.gradle.api.logging.LogLevel
import org.gradle.api.provider.ListProperty
Expand All @@ -17,6 +18,7 @@ import org.gradle.language.base.plugins.LifecycleBasePlugin
import org.gradle.process.CommandLineArgumentProvider

@CacheableTask
@Incubating
abstract class MpsCheck : JavaExec(), VerificationTask {

@get:Internal("covered by mpsVersion, initialModelcheckBackendClasspath()")
Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/de/itemis/mps/gradle/tasks/MpsExecute.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import de.itemis.mps.gradle.ErrorMessages
import de.itemis.mps.gradle.launcher.MpsBackendBuilder
import de.itemis.mps.gradle.launcher.MpsVersionDetection
import org.gradle.api.GradleException
import org.gradle.api.Incubating
import org.gradle.api.file.ConfigurableFileCollection
import org.gradle.api.file.Directory
import org.gradle.api.file.DirectoryProperty
Expand All @@ -19,6 +20,7 @@ import org.gradle.work.DisableCachingByDefault


@DisableCachingByDefault(because = "calls arbitrary user code")
@Incubating
abstract class MpsExecute : JavaExec() {

@get:Internal
Expand Down

0 comments on commit 0a05207

Please sign in to comment.