<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.feedzai</groupId>
    <artifactId>openml</artifactId>
    <version>0.1.0</version>
  </parent>
  <artifactId>openml-example</artifactId>
  <version>0.1.0</version>
  <name>Feedzai OpenML Example</name>
  <description>Contains an example of a provider of Machine Learning Models implementing Feedzai's OpenML API.
        These examples are not true models (in the essence that they do not learn and simply return dummy predictions).</description>
  <dependencies>
    <dependency>
      <groupId>com.feedzai</groupId>
      <artifactId>openml-api</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.feedzai</groupId>
      <artifactId>openml-utils</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          <appendAssemblyId>false</appendAssemblyId>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
