Skip to content

Commit

Permalink
plugins to mpp
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Aug 16, 2019
1 parent d55c55a commit d04c46a
Show file tree
Hide file tree
Showing 15 changed files with 33 additions and 9 deletions.
40 changes: 32 additions & 8 deletions kotlintest-plugins/kotlintest-plugins-pitest/build.gradle
@@ -1,15 +1,39 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm'
id 'org.jetbrains.kotlin.multiplatform'
id 'java-library'
id 'maven-publish'
id 'signing'
}

dependencies {
compile project(':kotlintest-runner:kotlintest-runner-jvm')
compile 'org.pitest:pitest:1.4.5'
testCompile project(":kotlintest-runner:kotlintest-runner-junit5")
repositories {
mavenCentral()
}

kotlin {

jvm()

sourceSets {

jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
implementation project(':kotlintest-runner:kotlintest-runner-jvm')
implementation 'org.pitest:pitest:1.4.5'
}
}

jvmTest {
dependencies {
implementation project(':kotlintest-runner:kotlintest-runner-junit5')
}
}
}
}

compileKotlinJvm {
kotlinOptions {
freeCompilerArgs += '-Xuse-experimental=kotlin.Experimental'
}
}

test {
Expand All @@ -19,4 +43,4 @@ test {
}
}

apply from: '../../publish.gradle'
apply from: '../../publish.gradle'
1 change: 1 addition & 0 deletions kotlintest-runner/kotlintest-runner-junit4/build.gradle
Expand Up @@ -17,6 +17,7 @@ kotlin {
jvmMain {
dependencies {
implementation kotlin('stdlib-jdk8')
implementation project(':kotlintest-core')
implementation project(':kotlintest-runner:kotlintest-runner-jvm')
implementation 'junit:junit:4.12'
implementation 'net.sourceforge.argparse4j:argparse4j:0.8.1'
Expand Down
1 change: 0 additions & 1 deletion kotlintest-runner/kotlintest-runner-jvm/build.gradle
Expand Up @@ -29,7 +29,6 @@ kotlin {

jvmTest {
dependencies {
implementation kotlin('stdlib-jdk8')
implementation project(':kotlintest-runner:kotlintest-runner-junit5')
}
}
Expand Down

0 comments on commit d04c46a

Please sign in to comment.