Skip to content

Commit a1abdca

Browse files
LinschotenLinschoten
authored andcommitted
Release 3.0.0-RC
1 parent 189f726 commit a1abdca

File tree

4 files changed

+44
-44
lines changed

4 files changed

+44
-44
lines changed

build.sbt

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -232,41 +232,41 @@ lazy val integration = project.in(file("integration"))
232232
.enablePlugins(MultiJvmPlugin)
233233
.configs(MultiJvm)
234234

235-
lazy val examples = project
236-
.in(file("examples"))
237-
.enablePlugins(JavaAppPackaging)
238-
.settings(commonSettings)
239-
.settings(noPublishSettings)
240-
.settings(
241-
moduleName := "examples",
242-
scalacOptions ++= Seq(
243-
"-Ypartial-unification"
244-
),
245-
libraryDependencies ++=
246-
compileDeps(
247-
slf4jApi,
248-
slf4jSimple,
249-
http4s,
250-
http4sDsl,
251-
http4sServer,
252-
http4sCirce,
253-
circe,
254-
circeGeneric,
255-
kamon,
256-
kamonPrometheus
257-
) ++ testDeps(
258-
scalaTest,
259-
scalaCheck,
260-
junitInterface,
261-
slf4jApi,
262-
mockito,
263-
logback
264-
)
265-
)
266-
.settings(
267-
maintainer in Docker := "The Apollo Squad",
268-
packageSummary in Docker := "A web-shop checkout service example running baker",
269-
packageName in Docker := "checkout-service-baker-example",
270-
dockerExposedPorts := Seq(8080)
271-
)
272-
.dependsOn(bakertypes, runtime, recipeCompiler, recipeDsl, intermediateLanguage)
235+
//lazy val examples = project
236+
// .in(file("examples"))
237+
// .enablePlugins(JavaAppPackaging)
238+
// .settings(commonSettings)
239+
// .settings(noPublishSettings)
240+
// .settings(
241+
// moduleName := "examples",
242+
// scalacOptions ++= Seq(
243+
// "-Ypartial-unification"
244+
// ),
245+
// libraryDependencies ++=
246+
// compileDeps(
247+
// slf4jApi,
248+
// slf4jSimple,
249+
// http4s,
250+
// http4sDsl,
251+
// http4sServer,
252+
// http4sCirce,
253+
// circe,
254+
// circeGeneric,
255+
// kamon,
256+
// kamonPrometheus
257+
// ) ++ testDeps(
258+
// scalaTest,
259+
// scalaCheck,
260+
// junitInterface,
261+
// slf4jApi,
262+
// mockito,
263+
// logback
264+
// )
265+
// )
266+
// .settings(
267+
// maintainer in Docker := "The Apollo Squad",
268+
// packageSummary in Docker := "A web-shop checkout service example running baker",
269+
// packageName in Docker := "checkout-service-baker-example",
270+
// dockerExposedPorts := Seq(8080)
271+
// )
272+
// .dependsOn(bakertypes, runtime, recipeCompiler, recipeDsl, intermediateLanguage)

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import sbt._
33
//noinspection TypeAnnotation
44
object Dependencies {
55

6-
val akkaVersion = "2.5.17"
6+
val akkaVersion = "2.5.22"
77
val http4sVersion = "0.20.0"
88
val circeVersion = "0.11.1"
99

project/plugins.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
1818

1919
addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0")
2020

21-
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.25")
21+
//addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.25")
2222

2323
libraryDependencies += "org.slf4j" % "slf4j-nop" % "1.7.25"
24-
25-
// For the example application
26-
addSbtPlugin("io.kamon" % "sbt-kanela-runner" % "2.0.1")
24+
//
25+
//// For the example application
26+
//addSbtPlugin("io.kamon" % "sbt-kanela-runner" % "2.0.1")

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "3.0.0-SNAPSHOT"
1+
version in ThisBuild := "3.0.0-RC"

0 commit comments

Comments
 (0)