dcucc-1.2-calcite-20190121.160940-10.pom
Checksums
MD5
|
665f7f9668a2e944a9d5a8ef522f4cf1
|
SHA1
|
90db00a6814af82b71eb343923c3a247bef87e38
|
SHA256
|
255ba57a04f4fbf36d6d5ff25d41eb3c65decb9c2fc1fa845e297bae7acb314b
|
SHA512
|
d64ce215b90678e4f827a17104d5c2b6adf99a6c5b5fbc52ce5c5b59152c46393b69b556ced0979d62e843a8f01ee99f550676560e3a7c52f60ba31380fbb2d3
|
POM
<?xml version="1.0" encoding="UTF-8"?>
<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>dcucc</artifactId>
<packaging>jar</packaging>
<name>DCUCC</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>de.metanome.algorithms.dcucc</groupId>
<artifactId>DCUCC</artifactId>
<version>1.2-calcite-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>de.uni-potsdam.hpi</groupId>
<artifactId>utils</artifactId>
<version>0.0.1-calcite-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>de.uni-potsdam.hpi</groupId>
<artifactId>dao</artifactId>
<version>0.0.1-calcite-SNAPSHOT</version>
</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>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.metanome.algorithms.ducc</groupId>
<artifactId>DUCCAlgorithm</artifactId>
<version>1.2-calcite-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>de.metanome.algorithms.test_helper</groupId>
<artifactId>dcucc_test_helper</artifactId>
<version>1.2-calcite-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>8.2.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</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-assembly-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<archive>
<manifestEntries>
<Algorithm-Bootstrap-Class>
de.metanome.algorithms.dcucc.Dcucc
</Algorithm-Bootstrap-Class>
</manifestEntries>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>xml</format>
</formats>
<check/>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>