-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from CleverCloud/Scala3Pekko
pekko & scala3 & remove akka in name & bump all
- Loading branch information
Showing
16 changed files
with
204 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,58 @@ | ||
inThisBuild( | ||
List( | ||
organization := "com.clever-cloud", | ||
homepage := Some(url("https://github.com/clevercloud/akka-warp10-scala-client")), | ||
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), | ||
developers := List( | ||
Developer( | ||
"kannarfr", | ||
"Alexandre DUVAL", | ||
"[email protected]", | ||
url("https://alexandre-duval.fr") | ||
) | ||
), | ||
version := "1.6.14", | ||
name := """akka-warp10-scala-client""", | ||
scalaVersion := "2.13.11", | ||
versionScheme := Some("early-semver"), | ||
scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/clevercloud/akka-warp10-scala-client"), | ||
"[email protected]:clevercloud/akka-warp10-scala-client.git" | ||
) | ||
), | ||
libraryDependencies ++= Seq( | ||
"org.apache.commons" % "commons-text" % "1.10.0", | ||
"com.typesafe.akka" %% "akka-actor" % "2.6.19", | ||
"com.typesafe.akka" %% "akka-http" % "10.2.9", | ||
"com.typesafe.akka" %% "akka-stream" % "2.6.19", | ||
"io.circe" %% "circe-core" % "0.14.5", | ||
"io.circe" %% "circe-generic" % "0.14.5", | ||
"io.circe" %% "circe-parser" % "0.14.5", | ||
"ch.qos.logback" % "logback-classic" % "1.4.11", | ||
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", | ||
"org.specs2" %% "specs2-core" % "4.20.2" % Test, | ||
"com.clever-cloud" %% "testcontainers-scala-warp10" % "2.1.0" % Test | ||
), | ||
scalacOptions ++= Seq( | ||
"-deprecation", | ||
"-feature", | ||
"-unchecked", | ||
"-Xlint", | ||
"-Xcheckinit", | ||
"-language:postfixOps" | ||
), | ||
Test / parallelExecution := false, | ||
git.remoteRepo := "[email protected]:clevercloud/akka-warp10-scala-client.git" | ||
lazy val circeVersion = "0.14.6" | ||
lazy val pekkoVersion = "1.0.2" | ||
lazy val pekkoHttpVersion = "1.0.1" | ||
|
||
ThisBuild / organization := "com.clever-cloud" | ||
ThisBuild / homepage := Some(url("https://github.com/clevercloud/warp10-scala-client")) | ||
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")) | ||
ThisBuild / developers := List( | ||
Developer( | ||
"kannarfr", | ||
"Alexandre DUVAL", | ||
"[email protected]", | ||
url("https://alexandre-duval.fr") | ||
) | ||
) | ||
ThisBuild / version := "1.6.14" | ||
ThisBuild / scalaVersion := "3.4.2" | ||
ThisBuild / versionScheme := Some("early-semver") | ||
ThisBuild / scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/clevercloud/warp10-scala-client"), | ||
"[email protected]:clevercloud/warp10-scala-client.git" | ||
) | ||
) | ||
ThisBuild / libraryDependencies ++= Seq( | ||
"org.apache.commons" % "commons-text" % "1.10.0", | ||
"org.apache.pekko" %% "pekko-actor" % pekkoVersion, | ||
"org.apache.pekko" %% "pekko-stream" % pekkoVersion, | ||
"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, | ||
"io.circe" %% "circe-core" % circeVersion, | ||
"io.circe" %% "circe-generic" % circeVersion, | ||
"io.circe" %% "circe-parser" % circeVersion, | ||
"ch.qos.logback" % "logback-classic" % "1.5.2", | ||
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", | ||
"org.specs2" %% "specs2-core" % "4.20.2" % Test, | ||
"com.clever-cloud" %% "testcontainers-scala-warp10" % "2.1.0" % Test | ||
) | ||
ThisBuild / scalacOptions ++= Seq( | ||
"-deprecation", | ||
"-feature", | ||
"-unchecked", | ||
"-language:postfixOps" | ||
) | ||
ThisBuild / Test / parallelExecution := false | ||
ThisBuild / git.remoteRepo := "[email protected]:clevercloud/warp10-scala-client.git" | ||
|
||
enablePlugins(GhpagesPlugin) | ||
enablePlugins(SiteScaladocPlugin) | ||
|
||
sonatypeCredentialHost := "s01.oss.sonatype.org" | ||
sonatypeRepository := "https://s01.oss.sonatype.org/service/local" | ||
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org" | ||
ThisBuild / sonatypeRepository := "https://s01.oss.sonatype.org/service/local" | ||
|
||
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(JavaSpec.Distribution.Temurin, "21")) | ||
ThisBuild / githubWorkflowTargetTags ++= Seq("v*") | ||
ThisBuild / githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))) | ||
ThisBuild / githubWorkflowPublishTargetBranches += RefPredicate.StartsWith(Ref.Tag("v")) | ||
ThisBuild / githubWorkflowPublish := Seq(WorkflowStep.Sbt(List("ci-release"))) | ||
ThisBuild / githubWorkflowPublish := Seq( | ||
WorkflowStep.Sbt( | ||
List("ci-release"), | ||
|
@@ -67,3 +64,8 @@ ThisBuild / githubWorkflowPublish := Seq( | |
) | ||
) | ||
) | ||
|
||
lazy val root = (project in file(".")) | ||
.settings( | ||
name := "warp10-scala-client" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.9.6 | ||
sbt.version=1.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/" | ||
|
||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3") | ||
|
||
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") | ||
|
||
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.14.2") | ||
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0") | ||
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") | ||
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.23.0") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.