Publish to custom local repo, add copy-only reflect and js-lib

Add artifact signing
This commit is contained in:
Ilya Chernikov
2017-01-05 16:33:42 +03:00
committed by Ilya Gorbunov
parent 35a135cbf6
commit dfdce5ff58
4 changed files with 39 additions and 7 deletions
@@ -0,0 +1,7 @@
description = 'Kotlin JavaScript Library'
artifacts {
archives file: file("${rootDir}/../dist/kotlinc/lib/kotlin-jslib.jar"), name: project.name, type: 'jar'
archives file: file("${rootDir}/../dist/kotlinc/lib/kotlin-jslib-sources.jar"), name: project.name, classifier: 'sources', type: 'jar'
}
+7 -3
View File
@@ -1,5 +1,9 @@
description = ''
dependencies {
compile project(':kotlin-stdlib')
description = 'Kotlin reflect'
artifacts {
archives file: file("${rootDir}/../dist/kotlinc/lib/kotlin-reflect.jar"), name: project.name, type: 'jar'
archives file: file("${rootDir}/../dist/kotlin-reflect-sources-for-maven.jar"), name: project.name, classifier: 'sources', type: 'jar'
}