Skip to content

Commit da19ebd

Browse files
committed
Add akka example to parent module
1 parent 177d768 commit da19ebd

File tree

2 files changed

+20
-13
lines changed
  • webcam-capture-examples/webcam-capture-akka
  • webcam-capture

2 files changed

+20
-13
lines changed
Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
34
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.github.sarxos</groupId>
5+
6+
<parent>
7+
<artifactId>webcam-capture-examples</artifactId>
8+
<groupId>com.github.sarxos</groupId>
9+
<version>0.3.12-SNAPSHOT</version>
10+
</parent>
11+
512
<artifactId>webcam-capture-example-akka</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
713
<packaging>jar</packaging>
14+
815
<dependencies>
916
<dependency>
1017
<groupId>com.github.sarxos</groupId>
1118
<artifactId>webcam-capture</artifactId>
1219
<version>0.3.11</version>
1320
</dependency>
14-
<dependency>
15-
<groupId>io.javaslang</groupId>
16-
<artifactId>javaslang</artifactId>
17-
<version>2.0.2</version>
18-
</dependency>
1921
<dependency>
2022
<groupId>com.typesafe.akka</groupId>
21-
<artifactId>akka-cluster-tools_2.11</artifactId>
23+
<artifactId>akka-actor_2.11</artifactId>
2224
<version>2.4.1</version>
2325
</dependency>
2426
<dependency>
@@ -28,7 +30,7 @@
2830
</dependency>
2931
<dependency>
3032
<groupId>com.typesafe.akka</groupId>
31-
<artifactId>akka-actor_2.11</artifactId>
33+
<artifactId>akka-cluster-tools_2.11</artifactId>
3234
<version>2.4.1</version>
3335
</dependency>
3436
<dependency>
@@ -38,12 +40,12 @@
3840
</dependency>
3941
<dependency>
4042
<groupId>com.typesafe.akka</groupId>
41-
<artifactId>akka-persistence_2.11</artifactId>
43+
<artifactId>akka-distributed-data-experimental_2.11</artifactId>
4244
<version>2.4.1</version>
4345
</dependency>
4446
<dependency>
4547
<groupId>com.typesafe.akka</groupId>
46-
<artifactId>akka-distributed-data-experimental_2.11</artifactId>
48+
<artifactId>akka-persistence_2.11</artifactId>
4749
<version>2.4.1</version>
4850
</dependency>
4951
<dependency>
@@ -56,5 +58,10 @@
5658
<artifactId>akka-slf4j_2.11</artifactId>
5759
<version>2.4.1</version>
5860
</dependency>
61+
<dependency>
62+
<groupId>io.javaslang</groupId>
63+
<artifactId>javaslang</artifactId>
64+
<version>2.0.2</version>
65+
</dependency>
5966
</dependencies>
6067
</project>

webcam-capture/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
<artifactId>logback-classic</artifactId>
3737
<scope>provided</scope>
3838
</dependency>
39+
40+
<!-- unit tests -->
3941
<dependency>
4042
<groupId>com.jayway.awaitility</groupId>
4143
<artifactId>awaitility</artifactId>
4244
<scope>test</scope>
4345
</dependency>
44-
45-
<!-- unit tests -->
4646
<dependency>
4747
<groupId>junit</groupId>
4848
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)