Skip to content

Commit 2c758c1

Browse files
committed
Upgrades to versions
1 parent e721fe3 commit 2c758c1

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ configure<MavenPublishBaseExtension> {
6363
dependencies {
6464
api(libs.typeflows.github)
6565
api(libs.typeflows.github.marketplace)
66-
api(libs.typeflows.github.project.standards)
6766

6867
typeflowsApi(project(":"))
6968
}

gradle/libs.versions.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
com-vanniktech-gradle-maven-publish-plugin = "0.34.0"
33
kotlin = "2.2.20"
44
typeflows = "0.24.0-beta"
5-
version-catalog-update = "1.0.0"
5+
version-catalog-update = "1.0.1"
66

77
[plugins]
88
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
@@ -13,4 +13,3 @@ version-catalog-update = { id = "nl.littlerobots.version-catalog-update", versio
1313
[libraries]
1414
typeflows-github = { module = "io.typeflows:typeflows-github", version.ref = "typeflows" }
1515
typeflows-github-marketplace = { module = "io.typeflows:typeflows-github-marketplace", version.ref = "typeflows" }
16-
typeflows-github-project-standards = { module = "io.typeflows:typeflows-project-standards", version.ref = "typeflows" }

src/typeflows/kotlin/Typeflows.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import io.typeflows.github.TypeflowsGitHubRepo
44
import io.typeflows.github.visualisation.WorkflowVisualisations
55
import io.typeflows.github.workflow.Cron
66
import io.typeflows.github.workflow.step.RunCommand
7-
import io.typeflows.standards.TypeflowsProjectStandards
87
import io.typeflows.util.Builder
8+
import org.http4k.typeflows.Http4kProjectStandards
99
import org.http4k.typeflows.UpdateGradleProjectDependencies
1010

1111
class Typeflows : Builder<TypeflowsRepo> {
@@ -22,6 +22,6 @@ class Typeflows : Builder<TypeflowsRepo> {
2222

2323
files += WorkflowVisualisations(workflows)
2424
}
25-
files += TypeflowsProjectStandards()
25+
files += Http4kProjectStandards()
2626
}
2727
}

0 commit comments

Comments
 (0)