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

Commit

Permalink
tidy up gradle a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Nov 13, 2024
1 parent dec740a commit afdc205
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 33 deletions.
9 changes: 0 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ plugins {
kotlin("jvm")
id("org.http4k.project-metadata")
id("org.http4k.nexus")
id("com.google.devtools.ksp")

id("org.http4k.connect.module")
}
Expand All @@ -16,7 +15,6 @@ buildscript {
}
dependencies {
classpath("com.github.kt3k.coveralls:com.github.kt3k.coveralls.gradle.plugin:_")
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:_")
}
}

Expand All @@ -31,13 +29,6 @@ metadata {
subprojects {
apply(plugin = "org.http4k.module")
apply(plugin = "org.http4k.connect.module")
apply(plugin = "com.google.devtools.ksp")

tasks {
withType<KspTask> {
outputs.upToDateWhen { false }
}
}

dependencies {
when {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.http4k.connect

import com.google.devtools.ksp.gradle.KspTask
import gradle.kotlin.dsl.accessors._0e3dbbf81313c38faa652e7693f66ab5.api
import org.gradle.kotlin.dsl.dependencies
import org.gradle.kotlin.dsl.project
Expand All @@ -10,6 +11,12 @@ plugins {
id("com.google.devtools.ksp")
}

tasks {
withType<KspTask> {
outputs.upToDateWhen { false }
}
}

dependencies {
api("org.http4k:http4k-cloudnative")
api(project(":http4k-connect-core"))
Expand Down
24 changes: 0 additions & 24 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,6 @@

result4k = { module = "dev.forkhandles:result4k" }

cloudfront = { module = "software.amazon.awssdk:cloudfront" }

cognitoidentityprovider = { module = "software.amazon.awssdk:cognitoidentityprovider" }

dynamodb = { module = "software.amazon.awssdk:dynamodb" }

kms = { module = "software.amazon.awssdk:kms" }

lambda = { module = "software.amazon.awssdk:lambda" }

s3 = { module = "software.amazon.awssdk:s3" }

secretsmanager = { module = "software.amazon.awssdk:secretsmanager" }

ses = { module = "software.amazon.awssdk:ses" }

sns = { module = "software.amazon.awssdk:sns" }

sqs = { module = "software.amazon.awssdk:sqs" }

ssm = { module = "software.amazon.awssdk:ssm" }

sts = { module = "software.amazon.awssdk:sts" }

symbol-processing-api = "com.google.devtools.ksp:symbol-processing-api:_"

kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect" }
Expand Down
1 change: 1 addition & 0 deletions http4k-connect-ksp-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ val license by project.extra { Apache2 }

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

dependencies {
Expand Down

0 comments on commit afdc205

Please sign in to comment.