Skip to content

Commit

Permalink
FDP-94: Add azure oauth dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Jasper Kamerling <[email protected]>
  • Loading branch information
jasperkamerling committed Nov 17, 2023
1 parent a431a7b commit 6437e43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions application/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-logging")
implementation("org.springframework.kafka:spring-kafka")
implementation("com.gxf.utilities:kafka-azure-oauth:0.2")
implementation("com.microsoft.azure:msal4j:1.13.10")
implementation("org.apache.httpcomponents:httpclient:4.5.13")
implementation(kotlin("reflect"))
Expand Down
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ subprojects {

repositories {
mavenCentral()
maven {
name = "GXFGithubPackages"
url = uri("https://maven.pkg.github.com/osgp/*")
credentials {
username = project.findProperty("github.username") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("github.token") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
}

extensions.configure<JavaPluginExtension> {
Expand Down

0 comments on commit 6437e43

Please sign in to comment.