Skip to content

Commit

Permalink
Update to newly built Kotlin Client from GH Run 270
Browse files Browse the repository at this point in the history
  • Loading branch information
openapi-bot committed May 6, 2024
1 parent b9e366d commit 67873db
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion build-jar.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,35 @@
plugins {
id 'java'
id "org.jetbrains.kotlin.jvm" version "$kotlinVersion"
id 'maven-publish'
}

jar {
archiveBaseName = 'cumulocity-clients-kotlin'
archiveVersion = '10.18.0-269'
archiveVersion = '10.18.0-270'
}

repositories {
mavenCentral()
}

publishing {
publications {
maven(MavenPublication) {
groupId = 'com.cumulocity'
artifactId = 'cumulocity-clients-kotlin'
version = '10.18.0-270'
from components.java
}
}
repositories {
maven {
url = layout.buildDirectory.dir('mavenRepo')
}
}
}


dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 33
versionCode 269
versionCode 270
versionName "10.18.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit 67873db

Please sign in to comment.