Skip to content

Commit

Permalink
runtime versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aludwiko committed Dec 2, 2024
1 parent b552d48 commit 561e3bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion akka-javasdk-maven/akka-javasdk-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<!-- These are dependent on runtime environment and cannot be customized by users -->
<maven.compiler.release>21</maven.compiler.release>
<kalix-runtime.version>1.2.2-7-3e32f0a1-SNAPSHOT</kalix-runtime.version>
<kalix-runtime.version>1.3.0-2909c94</kalix-runtime.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skip.docker>false</skip.docker>
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Dependencies {
val ProtocolVersionMinor = 1
val RuntimeImage = "gcr.io/kalix-public/kalix-runtime"
// Remember to bump kalix-runtime.version in akka-javasdk-maven/akka-javasdk-parent if bumping this
val RuntimeVersion = sys.props.getOrElse("kalix-runtime.version", "1.2.2-7-3e32f0a1-SNAPSHOT")
val RuntimeVersion = sys.props.getOrElse("kalix-runtime.version", "1.3.0-2909c94")
}
// NOTE: embedded SDK should have the AkkaVersion aligned, when updating RuntimeVersion, make sure to check
// if AkkaVersion and AkkaHttpVersion are aligned
Expand Down
5 changes: 3 additions & 2 deletions publishLocally.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# This script will publish the current snapshot of all artifacts.
# Including the maven plugin and archetypes.

set -e
export SDK_VERSION=$(sbt "print akka-javasdk/version" | tail -1)

echo
Expand All @@ -15,8 +16,8 @@ sbt 'publishM2; +publishLocal'
mvn clean install -Dskip.docker=true

# cleanup
rm pom.xml.versionsBackup
rm */pom.xml.versionsBackup
rm -f pom.xml.versionsBackup
rm -f */pom.xml.versionsBackup

# revert, but only we didn't request to keep the modified files
if [ "$1" != "--keep" ]; then
Expand Down

0 comments on commit 561e3bd

Please sign in to comment.