ES with Akka Basic Setup Question

Hi,

I have trouble setting up the basics. I have the Akka part working and here is the pom.xml looks like. Under dependency, how do I include both Akka and ES? It doesn't recognize ES packages at the moment. Please advise me. Thank you so much in advance.

<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>AkkaHelloWorldApplication</groupId>
    <artifactId>AkkaHelloWorldApplication</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>AkkaHelloWorldApplication</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.typesafe.akka</groupId>
            <artifactId>akka-actor</artifactId>
            <version>2.0.3</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>typesafe</id>
            <name>Typesafe Repository</name>
        <url>http://repo.typesafe.com/typesafe/releases/</url>
        </repository>
    </repositories>
</project>