<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>
    <artifactId>simple-actors</artifactId>
  
    <parent>
        <groupId>monterey-v4-examples</groupId>
        <artifactId>monterey-examples</artifactId>
        <version>4.0.0-M4</version> <!-- MONTEREY_VERION -->
        <relativePath>../monterey-v4-examples-parent/pom.xml</relativePath>
    </parent>
  
    <dependencies>
        <dependency>
            <groupId>monterey</groupId>
            <artifactId>monterey-actor-api</artifactId>
        </dependency>
        <dependency>
            <groupId>monterey</groupId>
            <artifactId>monterey-venue-util</artifactId>
        </dependency>
        <dependency>
            <groupId>monterey</groupId>
            <artifactId>monterey-testharness</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
