tane_algorithm_helper-1.2-calcite-20190119.201833-1.pom

Checksums

MD5 2b00e2c2ecc825a52e788a513e1c2644
SHA1 76845263763a5e6e1fed4735fc4109ded140027e
SHA256 4d824a2ac25287235299414ce80db3e9c1ca9f1762ced9b9b35719afc8ea98a0
SHA512 3a17c0606d0f9579e53c5bfcb8aa450d5b93f353655b5fda75e0e982b6a8933d39746beb338034f153b5a4a720f641bc44c5a67c73177f3721be44acf21ab5c1

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>tane_algorithm_helper</artifactId>
    <packaging>jar</packaging>
    <name>Fixtures for Tests</name>

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

    <dependencies>
        <dependency>
            <groupId>de.metanome</groupId>
            <artifactId>algorithm_integration</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.9.5</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>17.0</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>