Rebranding
Created by: JesusMcCloud
This should go through first.
- Then publish snapshot to sonatype (without relocation POM, so we don't run into the KLIB bug.)
- Then publish snapshots of EU PID and MDL credentials to sonatype, because we require them here for testing
- Then publish this rebranded library with relocation POM to sonatype
- Then update all credentials (refactor
initWithVcLib
toinitWithVck
or whatever is preferred - Update credentials collection and a-sit-plus.github.io
- Update everything else that depends on this work
After we know all this went well, we should do another round, using the repranded kmp-crypto and its verifier and the rebranded jsonpath library.
Merge request reports
Activity
requested review from @F8674AD0DC382184
16 16 run: ./gradlew assemble 17 - name: Upload jar vclib 17 - name: Upload jar ckib 18 18 uses: actions/upload-artifact@v3 19 19 with: 20 name: vclib 20 name: ckib 21 21 path: | 22 vclib/build/libs/*jar 23 - name: Upload jar vclib-aries 22 ckib/build/libs/*jar 23 - name: Upload jar ckib-aries 24 24 uses: actions/upload-artifact@v3 25 25 with: 26 name: vclib-aries 26 name: ckib-aries 27 27 } 28 28 29 29 val jsonSerializer by lazy { 30 Json { 31 prettyPrint = false 32 encodeDefaults = false 33 classDiscriminator = "type" 34 ignoreUnknownKeys = true 30 Json(from = at.asitplus.crypto.datatypes.jws.io.jsonSerializer) { 43 43 } 44 44 45 45 @OptIn(ExperimentalSerializationApi::class) 46 val cborSerializer by lazy { 47 Cbor { 46 val vckCborSerializer by lazy { 47 Cbor(from = at.asitplus.crypto.datatypes.cose.io.cborSerializer) {
Please register or sign in to reply