Move Kotlin compiler plugin module to different name
This commit is contained in:
@@ -10,7 +10,6 @@ plugins {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(kotlin("stdlib-jdk8"))
|
||||
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable")
|
||||
|
||||
kapt("com.google.auto.service:auto-service:1.0-rc6")
|
||||
@@ -1,19 +1,12 @@
|
||||
buildscript {
|
||||
dependencies {
|
||||
classpath("gradle.plugin.com.bnorm.power:kotlin-power-assert-gradle:0.4.0")
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
kotlin("multiplatform") version "1.4.0"
|
||||
id("com.bnorm.power.kotlin-power-assert") version "0.4.0"
|
||||
}
|
||||
apply(plugin = "com.bnorm.power.kotlin-power-assert")
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
|
||||
kotlin {
|
||||
jvm {
|
||||
compilations.all {
|
||||
|
||||
@@ -1,9 +1,3 @@
|
||||
rootProject.name = "sample"
|
||||
rootProject.name = "kotlin-power-assert-sample"
|
||||
|
||||
includeBuild("..") {
|
||||
dependencySubstitution {
|
||||
substitute(module("com.bnorm.power:kotlin-power-assert")).with(project(":kotlin-power-assert"))
|
||||
substitute(module("com.bnorm.power:kotlin-power-assert-gradle")).with(project(":kotlin-power-assert-gradle"))
|
||||
substitute(module("gradle.plugin.com.bnorm.power:kotlin-power-assert-gradle")).with(project(":kotlin-power-assert-gradle"))
|
||||
}
|
||||
}
|
||||
includeBuild("..")
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
rootProject.name = "kotlin-power-assert"
|
||||
|
||||
include(":kotlin-power-assert")
|
||||
include(":kotlin-power-assert-gradle")
|
||||
include(":kotlin-power-assert-plugin")
|
||||
|
||||
Reference in New Issue
Block a user