Skip to content

Commit

Permalink
feat: added amazon kms module
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmathew committed Sep 3, 2024
1 parent 0eff6ac commit f000710
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
24 changes: 24 additions & 0 deletions modules/amazon-kms/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
plugins {
kotlin("jvm") version "2.0.0"
}

group = "com.sphereon.oid.fed.kms.amazon"
version = "0.1.0"

repositories {
mavenCentral()
}

dependencies {
testImplementation(kotlin("test"))
api(projects.modules.openapi)
implementation(platform("software.amazon.awssdk:bom:2.21.1"))
implementation("software.amazon.awssdk:kms")
}

tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}
5 changes: 5 additions & 0 deletions modules/amazon-kms/src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.sphereon.oid.fed.kms.local

fun main() {
println("Hello World!")
}
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ include(":modules:openapi")
include(":modules:persistence")
include(":modules:services")
include("modules:local-kms")
include("modules:amazon-kms")

0 comments on commit f000710

Please sign in to comment.