BINDERAlgorithm-1.2-calcite-20190119.194320-1.pom
Checksums
MD5
|
14a1e784d761e321c92b99b76aa4e687
|
SHA1
|
36ebf5b588af455a66e8bac5d9173b20c875eb32
|
SHA256
|
e78462c440797b2d3de30fb27fa2bb512f8e54630f0df507867e211209fced4e
|
SHA512
|
8e36875f9934dc04632453a72b725cc5cb2b7718354d7e627452c78bd42fba5ce8bb11e843eea376840fb70db901b9f5f3bdba3c904e385aea7cd9bcd5740254
|
POM
<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>BINDERAlgorithm</artifactId>
<packaging>jar</packaging>
<name>BINDERAlgorithm</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>de.metanome.algorithms.binder</groupId>
<artifactId>BINDERModules</artifactId>
<version>1.2-calcite-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.uni-potsdam.hpi</groupId>
<artifactId>utils</artifactId>
<version>0.0.1-calcite-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.uni-potsdam.hpi</groupId>
<artifactId>dao</artifactId>
<version>0.0.1-calcite-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.metanome</groupId>
<artifactId>algorithm_integration</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>15.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>8.2.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.javolution</groupId>
<artifactId>javolution</artifactId>
<version>5.3.1</version>
<scope>compile</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.binder.core.BINDER
</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>