15d797b5b5
#KTI-892
20 lines
580 B
Kotlin
20 lines
580 B
Kotlin
/*
|
|
How to Publish
|
|
|
|
1. Bump version parameter
|
|
2. Prepare publication credentials for https://kotlin.jetbrains.space/p/kotlin/packages/maven/kotlin-dependencies
|
|
3. Execute `./gradlew -p dependencies/protobuf publish -PkotlinSpaceUsername=usr -PkotlinSpacePassword=token`
|
|
*/
|
|
|
|
val protobufVersion by extra("2.6.1")
|
|
val publishedVersion by extra("2.6.1-1")
|
|
|
|
allprojects {
|
|
group = "org.jetbrains.kotlin"
|
|
version = publishedVersion
|
|
|
|
tasks.withType<AbstractArchiveTask>().configureEach {
|
|
isPreserveFileTimestamps = false
|
|
isReproducibleFileOrder = true
|
|
}
|
|
} |