Skip to content
Snippets Groups Projects

Rebranding

Open Kreiner, Stefan requested to merge tmp/rebrand into develop

Created by: JesusMcCloud

This should go through first.

  1. Then publish snapshot to sonatype (without relocation POM, so we don't run into the KLIB bug.)
  2. Then publish snapshots of EU PID and MDL credentials to sonatype, because we require them here for testing
  3. Then publish this rebranded library with relocation POM to sonatype
  4. Then update all credentials (refactor initWithVcLib to initWithVck or whatever is preferred
  5. Update credentials collection and a-sit-plus.github.io
  6. 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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
    Loading