Skip to content

Commit f129cd7

Browse files
authored
refactor(server): reuse ActionCoords from abg (#1362)
Part of #1318.
1 parent db407fd commit f129cd7

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

jit-binding-server/src/main/kotlin/io/github/typesafegithub/workflows/jitbindingserver/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package io.github.typesafegithub.workflows.jitbindingserver
22

33
import io.github.reactivecircus.cache4k.Cache
4-
import io.github.typesafegithub.workflows.mavenbinding.ActionCoords
4+
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
55
import io.github.typesafegithub.workflows.mavenbinding.Artifact
66
import io.github.typesafegithub.workflows.mavenbinding.JarArtifact
77
import io.github.typesafegithub.workflows.mavenbinding.TextArtifact

maven-binding-builder/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ plugins {
44

55
dependencies {
66
implementation("org.jetbrains.kotlin:kotlin-compiler")
7-
implementation(projects.actionBindingGenerator)
7+
api(projects.actionBindingGenerator)
88
runtimeOnly(projects.githubWorkflowsKt)
99
}

maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/ActionCoords.kt

Lines changed: 0 additions & 7 deletions
This file was deleted.

maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/VersionArtifactsBuilding.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package io.github.typesafegithub.workflows.mavenbinding
22

3+
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
34
import java.security.MessageDigest
45

56
sealed interface Artifact

0 commit comments

Comments
 (0)