Do not build modules with maven which are built with gradle.

kotlin-maven-plugin-test:
Remove dependency on kotlin-test-parent that is no longer published and required.
Add dependency on kotlin-runtime as it's no longer coming transitively from kotlin-script-runtime.
Change kotlin version test to reflect manifest implementation title changes.
This commit is contained in:
Ilya Gorbunov
2017-03-29 09:50:59 +03:00
parent 356f8dd0d1
commit 97d1ffb036
3 changed files with 16 additions and 17 deletions
@@ -4,15 +4,14 @@ import java.net.URL
import java.util.jar.Attributes
import java.util.jar.Manifest
// "Kotlin Reflect" and "Kotlin Script Runtime" are different because unlike other libraries which are built with Maven, they're copied from dist
val LIBRARIES = listOf(
"kotlin-runtime",
"kotlin-stdlib",
"kotlin-stdlib-common",
"kotlin-stdlib-jre7",
"kotlin-stdlib-jre8",
"Kotlin Reflect",
"Kotlin Script Runtime"
"kotlin-reflect",
"kotlin-script-runtime"
)
const val KOTLIN_VERSION = "Kotlin-Version"