fdmine_test_helper-1.2-calcite-20190119.203301-1.pom

Checksums

MD5 ee2759f548c27cd7e98c9f202bf3ec50
SHA1 2f65be9d1516ed44938f3ebe3b9ad25d59b45522
SHA256 a7a12598af735f08a070d18022654419bebd63e69c68c098b5a336cc0e353499
SHA512 152b4cd250220d491b86684f6d5c5a7ea450d06613ffd0a67c4ba23a956003cea0136867a766ef69ab3388bde7ab4bc063c71c167acabb591114fbfaa17d7bb5

POM

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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>fdmine_test_helper</artifactId>
  <packaging>jar</packaging>

  <name>fdmine_test_helper</name>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <parent>
    <groupId>de.metanome.algorithms.fdmine</groupId>
    <artifactId>FDMineModules</artifactId>
    <version>1.2-calcite-SNAPSHOT</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

    <dependencies>
        <dependency>
        <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>de.metanome</groupId>
      <artifactId>algorithm_integration</artifactId>
    </dependency>
    <dependency>
      <groupId>de.metanome</groupId>
      <artifactId>algorithm_helper</artifactId>
    </dependency>
    <dependency>
      <groupId>de.metanome</groupId>
      <artifactId>backend</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
            <showWarnings>true</showWarnings>
            <showDeprecation>true</showDeprecation>
            <compilerArgument>-Xlint:all</compilerArgument>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-source-plugin</artifactId>
	<executions>
	  <execution>
	    <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
	    </goals>
	  </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>