Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pekko http 1.0.0 #115

Merged
merged 1 commit into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ ThisBuild / reproducibleBuildsCheckResolver :=
"Apache Pekko Staging".at("https://repository.apache.org/content/groups/staging/")

ThisBuild / resolvers += Resolver.jcenterRepo
// TODO: Remove when Pekko has a proper release
ThisBuild / resolvers += Resolver.ApacheMavenSnapshotsRepo
ThisBuild / resolvers += "Apache Pekko Staging".at("https://repository.apache.org/content/groups/staging")
ThisBuild / updateOptions := updateOptions.value.withLatestSnapshots(false)

// root
lazy val root = project
Expand Down
15 changes: 1 addition & 14 deletions integration-test/kubernetes-api-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,11 @@
<maven.compiler.target>1.8</maven.compiler.target>
<encoding>UTF-8</encoding>
<pekko.version>1.0.1</pekko.version>
<pekko.http.version>1.0.0-RC2</pekko.http.version>
<pekko.http.version>1.0.0</pekko.http.version>
<pekko-management.version>0.0.0</pekko-management.version> <!-- set by build -->
<scala.binary.version>2.13</scala.binary.version>
</properties>

<repositories>
<repository>
<id>apache-snapshots</id>
<name>Apache Snapshots Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</repository>
<repository>
<id>apache-staging</id>
<name>Apache Staging Repository</name>
<url>https://repository.apache.org/content/repositories/staging/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.apache.pekko</groupId>
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object Dependencies {

// Align the versions in integration-test/kubernetes-api-java/pom.xml
val pekkoVersion = "1.0.1"
val pekkoHttpVersion = "1.0.0-RC2"
val pekkoHttpVersion = "1.0.0"

val scalaTestVersion = "3.2.14"
val scalaTestPlusJUnitVersion = scalaTestVersion + ".0"
Expand Down