Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
extract client gradle module
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Nov 13, 2024
1 parent 9373574 commit dec740a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
8 changes: 1 addition & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,7 @@ subprojects {
}

project.name != "http4k-connect-core" -> {
api(Http4k.cloudnative)
api(project(":http4k-connect-core"))
ksp(project(":http4k-connect-ksp-generator"))
ksp("se.ansman.kotshi:compiler:_")

testFixturesApi("se.ansman.kotshi:compiler:_")
testFixturesApi(testFixtures(project(":http4k-connect-core-fake")))
apply(plugin = "org.http4k.connect.client")
}
}
}
Expand Down
1 change: 1 addition & 0 deletions gradle/gradle-plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ repositories {
dependencies {
api(Kotlin.gradlePlugin)
api(gradleApi())
api("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:_")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package org.http4k.connect

import gradle.kotlin.dsl.accessors._0e3dbbf81313c38faa652e7693f66ab5.api
import org.gradle.kotlin.dsl.dependencies
import org.gradle.kotlin.dsl.project
import org.gradle.kotlin.dsl.repositories

plugins {
id("org.http4k.connect.module")
id("com.google.devtools.ksp")
}

dependencies {
api("org.http4k:http4k-cloudnative")
api(project(":http4k-connect-core"))
ksp(project(":http4k-connect-ksp-generator"))
ksp("se.ansman.kotshi:compiler:_")

testFixturesApi("se.ansman.kotshi:compiler:_")
testFixturesApi(testFixtures(project(":http4k-connect-core-fake")))
}

0 comments on commit dec740a

Please sign in to comment.