Skip to content

Commit

Permalink
pekko 1.0.0 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Jul 14, 2023
1 parent baad5d4 commit f7d48cd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ import sbt.Keys.parallelExecution

ThisBuild / apacheSonatypeProjectProfile := "pekko"
ThisBuild / versionScheme := Some(VersionScheme.SemVerSpec)
sourceDistName := "incubating-pekko-management"
sourceDistName := "apache-pekko-management"
sourceDistIncubating := true

ThisBuild / resolvers += Resolver.jcenterRepo
// TODO: Remove when Pekko has a proper release
ThisBuild / resolvers += Resolver.ApacheMavenSnapshotsRepo
ThisBuild / updateOptions := updateOptions.value.withLatestSnapshots(false)

enablePlugins(ReproducibleBuildsPlugin)

// root
lazy val root = project
.in(file("."))
Expand Down
4 changes: 2 additions & 2 deletions integration-test/kubernetes-api-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<encoding>UTF-8</encoding>
<pekko.version>0.0.0+26669-ec5b6764-SNAPSHOT</pekko.version>
<pekko.http.version>0.0.0+4411-6fe04045-SNAPSHOT</pekko.http.version>
<pekko.version>1.0.0</pekko.version>
<pekko.http.version>0.0.0+4468-963bd592-SNAPSHOT</pekko.http.version>
<pekko-management.version>0.0.0</pekko-management.version> <!-- set by build -->
<scala.binary.version>2.13</scala.binary.version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ object Dependencies {
val crossScalaVersions = Seq(scala212Version, scala213Version, scala3Version)

// Align the versions in integration-test/kubernetes-api-java/pom.xml
val pekkoVersion = "0.0.0+26669-ec5b6764-SNAPSHOT"
val pekkoHttpVersion = "0.0.0+4411-6fe04045-SNAPSHOT"
val pekkoVersion = "1.0.0"
val pekkoHttpVersion = "0.0.0+4468-963bd592-SNAPSHOT"

val scalaTestVersion = "3.2.14"
val scalaTestPlusJUnitVersion = scalaTestVersion + ".0"
Expand Down
5 changes: 3 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")
addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.30")
addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.10")
addSbtPlugin("com.github.pjfanning" % "sbt-source-dist" % "0.1.6")
addSbtPlugin("com.github.pjfanning" % "sbt-source-dist" % "0.1.8")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.0")

Expand All @@ -29,7 +30,7 @@ updateOptions := updateOptions.value.withLatestSnapshots(false)

// We have to deliberately use older versions of sbt-paradox because current Pekko sbt build
// only loads on JDK 1.8 so we need to bring in older versions of parboiled which support JDK 1.8
addSbtPlugin(("org.apache.pekko" % "pekko-sbt-paradox" % "0.0.0+38-68da3106-SNAPSHOT").excludeAll(
addSbtPlugin(("org.apache.pekko" % "pekko-sbt-paradox" % "0.0.0+43-d9643c78-SNAPSHOT").excludeAll(
"com.lightbend.paradox", "sbt-paradox",
"com.lightbend.paradox" % "sbt-paradox-apidoc",
"com.lightbend.paradox" % "sbt-paradox-project-info"))
Expand Down

0 comments on commit f7d48cd

Please sign in to comment.