<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>graphmod-learning</artifactId>
  <name>Graphical Models - Parameter Learning</name>
  
  <parent>
    <groupId>com.github.thorbenlindhauer</groupId>
    <artifactId>graphmod-parent</artifactId>
    <version>0.1.0</version>
    <relativePath>..</relativePath>
  </parent>
  
  <properties>
    <graphmod.version>0.1.0</graphmod.version>
  </properties>
  
  <dependencies>
    <dependency>
      <groupId>com.github.thorbenlindhauer</groupId>
      <artifactId>graphmod-inference-engine</artifactId>
      <version>${graphmod.version}</version>
    </dependency>
      
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
	</dependency>
	
	<dependency>
	  <groupId>org.assertj</groupId>
	  <artifactId>assertj-core</artifactId>
	  <scope>test</scope>
	</dependency>
  </dependencies>
</project>