Provide a method for common publishing configuration.

This commit is contained in:
Ilya Gorbunov
2017-03-29 06:50:18 +03:00
parent 92ef26606b
commit 0b2cadc638
14 changed files with 84 additions and 28 deletions
@@ -2,6 +2,9 @@ description = 'Kotlin Test Common'
apply plugin: 'kotlin-platform-common'
configurePublishing(project)
dependencies {
compile project(':kotlin-stdlib-common')
}
+2
View File
@@ -2,6 +2,8 @@ description = 'Kotlin Test for JS'
apply plugin: 'kotlin-platform-js'
configurePublishing(project)
dependencies {
implement project(':kotlin-test:kotlin-test-common')
compile project(':kotlin-stdlib-js')
+2
View File
@@ -3,6 +3,8 @@ description = 'Kotlin Test JUnit'
apply plugin: 'kotlin'
configureJvmProject(project)
configurePublishing(project)
dependencies {
compile project(':kotlin-test:kotlin-test-jvm')
+1
View File
@@ -4,6 +4,7 @@ description = 'Kotlin Test'
apply plugin: 'kotlin-platform-jvm'
configureJvmProject(project)
configurePublishing(project)
dependencies {
implement project(':kotlin-test:kotlin-test-common')