Skip to content

Commit

Permalink
Updated scala-k8s to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hnaderi committed Sep 16, 2022
1 parent cb813ee commit aeeb91c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.typelevel.sbt.gha.WorkflowStep.Sbt
import org.typelevel.sbt.TypelevelCiReleasePlugin

ThisBuild / tlBaseVersion := "0.0"
ThisBuild / tlBaseVersion := "0.1"

ThisBuild / organization := "dev.hnaderi"
ThisBuild / organizationName := "Hossein Naderi"
Expand Down Expand Up @@ -36,7 +36,7 @@ lazy val root =
.aggregate(core, manifest, cookbook, docs)
.enablePlugins(AutomateHeaderPlugin, NoPublishPlugin)

val scalaK8sVersion = "0.2.0"
val scalaK8sVersion = "0.3.0"
val munitVersion = "0.7.29"

lazy val manifest = project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import sbt.AutoPlugin
import sbt.Keys._
import sbt._

object K8SMicroservicePlugin extends AutoPlugin {
object K8sMicroservicePlugin extends AutoPlugin {
object autoImport {
val microserviceName: SettingKey[String] = settingKey(
"name used as deployment, config, secret, and all other resource names. defaults to [project / name]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import sbt._

object NativePackagerDockerIntegrationPlugin extends AutoPlugin {
override def trigger: PluginTrigger = allRequirements
override def requires: Plugins = DockerPlugin && K8SMicroservicePlugin
import K8SMicroservicePlugin.autoImport.microserviceImage
override def requires: Plugins = DockerPlugin && K8sMicroservicePlugin
import K8sMicroservicePlugin.autoImport.microserviceImage

override def projectSettings: Seq[Setting[_]] = Seq(
microserviceImage := (Docker / dockerAlias).value.toString()
Expand Down

0 comments on commit aeeb91c

Please sign in to comment.