com.adtran.scala-multiversion-plugin
Owner: ADTRAN, Inc.
Gradle plugin to build a project against multiple versions of scala
https://github.com/ADTRAN/gradle-scala-multiversion-plugin
Sources: https://github.com/ADTRAN/gradle-scala-multiversion-plugin
Version 1.0.38-main-SNAPSHOT
Created 09 April 2021.
Gradle plugin to build a project against multiple versions of scala
Add this plugin to your build using the plugins DSL:
plugins {
id("com.adtran.scala-multiversion-plugin") version "1.0.38-main-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.adtran.scala-multiversion-plugin:com.adtran.scala-multiversion-plugin.gradle.plugin:1.0.38-main-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.adtran.scala-multiversion-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.adtran.scala-multiversion-plugin:com.adtran.scala-multiversion-plugin.gradle.plugin:1.0.38-main-SNAPSHOT") } } apply(plugin = "com.adtran.scala-multiversion-plugin")
- Applying plugins to all subprojects .