<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ /*
  ~  * Copyright (c) 2017. Eric He (eriche39@gmail.com)
  ~  *
  ~  * This software is licensed under
  ~  *
  ~  * MIT license
  ~  *
  ~  */
  -->

<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>orchestrator-visualization</artifactId>
    <version>1.1</version>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <parent>
        <groupId>com.github.eriche39</groupId>
        <artifactId>orchestrator</artifactId>
        <version>1.1</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jersey</artifactId>
        </dependency>

        <!-- for static contents -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>com.github.eriche39</groupId>
            <artifactId>orchestrator-core</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>com.github.eriche39</groupId>
            <artifactId>orchestrator-meta</artifactId>
            <version>1.1</version>
        </dependency>
    </dependencies>


</project>