Move Kotlin compiler plugin module to different name

This commit is contained in:
Brian Norman
2020-08-29 18:45:06 -05:00
parent 8c0fc1d5e0
commit 0b031872ac
12 changed files with 4 additions and 18 deletions
@@ -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 -8
View File
@@ -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 {
+2 -8
View File
@@ -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
View File
@@ -1,4 +1,4 @@
rootProject.name = "kotlin-power-assert"
include(":kotlin-power-assert")
include(":kotlin-power-assert-gradle")
include(":kotlin-power-assert-plugin")