Skip to content

Commit dadeae2

Browse files
authored
Merge pull request #125 from sebastian-alfers/fix-akka-resolver
build: fix the akka build with a resolver for only this sample
2 parents c47af8c + 2d38040 commit dadeae2

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

akka/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:21.0.1_12-jdk-jammy
1+
FROM eclipse-temurin:25-jdk-jammy
22
WORKDIR /app
33
RUN apt-get update && apt-get install -y maven && \
44
rm -rf /var/lib/apt/lists/*

akka/pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.akka</groupId>
66
<artifactId>akka-javasdk-parent</artifactId>
7-
<version>3.4.6</version>
7+
<version>3.5.4</version>
88
<relativePath/>
99
</parent>
1010

@@ -15,4 +15,23 @@
1515

1616
<name>helloworld-agent</name>
1717

18+
<repositories>
19+
<repository>
20+
<id>akka-repository</id>
21+
<name>Akka Repository</name>
22+
<!-- This resolver must not be used for other builds outside of this sample -->
23+
<!-- Please fetch your resolver token at https://account.akka.io/token -->
24+
<url>https://repo.akka.io/maven/docker-compose</url>
25+
</repository>
26+
</repositories>
27+
<pluginRepositories>
28+
<pluginRepository>
29+
<id>akka-repository</id>
30+
<name>Akka Repository</name>
31+
<!-- This resolver must not be used for other builds outside of this sample -->
32+
<!-- Please fetch your resolver token at https://account.akka.io/token -->
33+
<url>https://repo.akka.io/maven/docker-compose</url>
34+
</pluginRepository>
35+
</pluginRepositories>
36+
1837
</project>

0 commit comments

Comments
 (0)