Skip to content

Commit

Permalink
Merge branch 'develop' into issues/rename-proximity-timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
kober32 authored Dec 13, 2023
2 parents 5a9231d + 4ac070a commit 8e0b763
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ buildscript {
mavenLocal()
mavenCentral()
google()
maven {
url = java.net.URI("https://plugins.gradle.org/m2/")
}
maven(url = "https://plugins.gradle.org/m2/")
}
dependencies {
classpath("com.android.tools.build:gradle:${Constants.BuildScript.androidPluginVersion}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Constants.BuildScript.kotlinVersion}")
classpath("org.jetbrains.dokka:dokka-gradle-plugin:${Constants.BuildScript.dokkaVersion}")
// releasing
classpath("io.github.gradle-nexus:publish-plugin:1.1.0")
classpath("io.github.gradle-nexus:publish-plugin:${Constants.BuildScript.publishVersion}")
// tests
classpath("com.github.bjoernq:unmockplugin:0.7.9")
}
Expand Down
3 changes: 2 additions & 1 deletion buildSrc/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@

systemProp.kotlinVersion=1.8.22
systemProp.androidPluginVersion=8.1.4
systemProp.dokkaVersion=1.8.20
systemProp.dokkaVersion=1.8.20
systemProp.publishVersion=1.3.0
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ object Constants {
val androidPluginVersion: String by System.getProperties()
val kotlinVersion: String by System.getProperties()
val dokkaVersion: String by System.getProperties()
val publishVersion: String by System.getProperties()
}

object Java {
Expand Down
3 changes: 2 additions & 1 deletion library/android-release-aar.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,10 @@ task androidSourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
}

task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
task androidJavadocsJar(type: Jar, dependsOn: [androidJavadocs, dokkaJavadoc]) {
archiveClassifier.set('javadoc')
from androidJavadocs.destinationDir
from(dokkaJavadoc.outputDirectory)
}

artifacts {
Expand Down
1 change: 1 addition & 0 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ plugins {
id("com.android.library")
kotlin("android")
id("de.mobilej.unmock")
id("org.jetbrains.dokka")
}

android {
Expand Down
2 changes: 1 addition & 1 deletion library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# and limitations under the License.
#

VERSION_NAME=1.8.1-SNAPSHOT
VERSION_NAME=1.8.2-SNAPSHOT
GROUP_ID=com.wultra.android.mtokensdk
ARTIFACT_ID=wultra-mtoken-sdk

0 comments on commit 8e0b763

Please sign in to comment.