Skip to content

Commit

Permalink
prepare next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Feb 19, 2024
1 parent 6ea81d2 commit 213e69b
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
2 changes: 2 additions & 0 deletions conventions-vclib/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
rootProject.name = "vclib-conventions"

//we don't want to pollute the classpath with a shadowed conventions plugin
System.setProperty("at.asitplus.gradle", "legacy")
includeBuild("gradle-conventions-plugin")
2 changes: 1 addition & 1 deletion conventions-vclib/src/main/kotlin/Plugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fun commonIosExports() = arrayOf(

class VcLibConventions : Plugin<Project> {
override fun apply(target: Project) {
target.plugins.apply("at.asitplus.gradle.conventions-legacy")
target.plugins.apply("at.asitplus.gradle.conventions")
}
}

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ kotlin.mpp.hierarchicalStructureSupport=false
# workaround dokka bug (need to wait for next snapshot build)
org.jetbrains.dokka.classpath.excludePlatformDependencyFiles=true

artifactVersion = 3.4.0
artifactVersion = 3.5.0-SNAPSHOT
jdk.version=17

2 changes: 1 addition & 1 deletion kmp-crypto
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ pluginManagement {
}
}

/*

includeBuild("kmp-crypto") {
dependencySubstitution {
substitute(module("at.asitplus.crypto:datatypes")).using(project(":datatypes"))
substitute(module("at.asitplus.crypto:datatypes-jws")).using(project(":datatypes-jws"))
substitute(module("at.asitplus.crypto:datatypes-cose")).using(project(":datatypes-cose"))
}
}*/
}

rootProject.name = "vclibrary"
include(":vclib")
Expand Down
4 changes: 2 additions & 2 deletions vclib-aries/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ version = artifactVersion


kotlin {

ios()
iosSimulatorArm64()
jvm()
Expand All @@ -27,11 +26,12 @@ kotlin {
api(project(":vclib"))
}
}

val commonTest by getting

val iosMain by getting
val iosSimulatorArm64Main by getting { dependsOn(iosMain) }
val iosTest by getting

val jvmMain by getting {
dependencies {
implementation(bouncycastle("bcprov"))
Expand Down
3 changes: 2 additions & 1 deletion vclib-openid/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ kotlin {
api(project(":vclib"))
}
}

val commonTest by getting

val iosMain by getting
val iosSimulatorArm64Main by getting { dependsOn(iosMain) }
val iosTest by getting

val jvmMain by getting {
dependencies {
implementation(bouncycastle("bcprov"))
Expand Down
2 changes: 2 additions & 0 deletions vclib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ kotlin {

val iosMain by getting
val iosSimulatorArm64Main by getting { dependsOn(iosMain) }
val iosTest by getting

val jvmMain by getting {
dependencies {
implementation(bouncycastle("bcpkix"))
Expand Down

0 comments on commit 213e69b

Please sign in to comment.