Skip to content

Commit

Permalink
Add akka example to parent module
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Jan 17, 2018
1 parent 177d768 commit da19ebd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
29 changes: 18 additions & 11 deletions webcam-capture-examples/webcam-capture-akka/pom.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">

<modelVersion>4.0.0</modelVersion>
<groupId>com.github.sarxos</groupId>

<parent>
<artifactId>webcam-capture-examples</artifactId>
<groupId>com.github.sarxos</groupId>
<version>0.3.12-SNAPSHOT</version>
</parent>

<artifactId>webcam-capture-example-akka</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.github.sarxos</groupId>
<artifactId>webcam-capture</artifactId>
<version>0.3.11</version>
</dependency>
<dependency>
<groupId>io.javaslang</groupId>
<artifactId>javaslang</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-cluster-tools_2.11</artifactId>
<artifactId>akka-actor_2.11</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
Expand All @@ -28,7 +30,7 @@
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.11</artifactId>
<artifactId>akka-cluster-tools_2.11</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
Expand All @@ -38,12 +40,12 @@
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-persistence_2.11</artifactId>
<artifactId>akka-distributed-data-experimental_2.11</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-distributed-data-experimental_2.11</artifactId>
<artifactId>akka-persistence_2.11</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
Expand All @@ -56,5 +58,10 @@
<artifactId>akka-slf4j_2.11</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>io.javaslang</groupId>
<artifactId>javaslang</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions webcam-capture/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
<artifactId>logback-classic</artifactId>
<scope>provided</scope>
</dependency>

<!-- unit tests -->
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>

<!-- unit tests -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit da19ebd

Please sign in to comment.