Skip to content

Commit 5e4ca88

Browse files
authoredDec 21, 2023
[JAVA-22519] Move articles from generic libraries module to specific library modules (#15416)
1 parent 51e9f6c commit 5e4ca88

File tree

121 files changed

+729
-518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+729
-518
lines changed
 

‎akka-modules/akka-actors/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Akka HTTP
2+
3+
This module contains articles about Akka actors.
4+
5+
### Relevant articles:
6+
7+
- [Introduction to Akka Actors in Java](https://www.baeldung.com/akka-actors-java)

‎akka-modules/akka-actors/pom.xml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>akka-actors</artifactId>
7+
<name>akka-actors</name>
8+
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>akka-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.typesafe.akka</groupId>
18+
<artifactId>akka-actor_${scala.version}</artifactId>
19+
<version>${typesafe-akka.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.typesafe.akka</groupId>
23+
<artifactId>akka-testkit_${scala.version}</artifactId>
24+
<version>${typesafe-akka.version}</version>
25+
<scope>test</scope>
26+
</dependency>
27+
</dependencies>
28+
29+
<properties>
30+
<typesafe-akka.version>2.5.11</typesafe-akka.version>
31+
</properties>
32+
33+
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.