<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>
  <parent>
    <groupId>ch.sahits.game</groupId>
    <artifactId>OpenPatrician</artifactId>
    <version>1.0.0_RC2</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  <artifactId>OpenPatricianEngine</artifactId>
  <name>OpenPatrician Engine</name>
  <description>Engine part driving the models and the game</description>
  <dependencies>
      <dependency>
          <groupId>ch.sahits.game</groupId>
          <artifactId>OpenPatricianGameEvent</artifactId>
      </dependency>
      <dependency>
          <groupId>ch.sahits.game</groupId>
          <artifactId>OpenPatricianData</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aop</artifactId>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-expression</artifactId>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
      </dependency>

      <!--<dependency>-->
          <!--<groupId>org.springframework.boot</groupId>-->
          <!--<artifactId>spring-boot-starter-log4j2</artifactId>-->
      <!--</dependency>-->
      <dependency>
		<groupId>com.google.guava</groupId>
		<artifactId>guava</artifactId>
	  </dependency>
      <dependency>
          <groupId>org.projectlombok</groupId>
          <artifactId>lombok</artifactId>
          <scope>provided</scope>
      </dependency>
      <dependency>
          <groupId>com.carrotsearch</groupId>
          <artifactId>hppc</artifactId>
      </dependency>


      <!-- Test -->
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-test</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>ch.sahits.game</groupId>
          <artifactId>MarvinFXEssentials</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>ch.sahits.game</groupId>
          <artifactId>OpenPatricianTestUtilities</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-api</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-engine</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>org.junit.vintage</groupId>
          <artifactId>junit-vintage-engine</artifactId>
          <scope>test</scope>
      </dependency>
      <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-params</artifactId>
      </dependency>
  </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>