BINDERDatabase-1.2-calcite-20190119.220207-2.pom
Checksums
MD5
|
f144c747206e368d194cf2ecd2379551
|
SHA1
|
f2a29f1b4acb79a59fca0de4915d14ae68d8efbe
|
SHA256
|
96ec1eb5644e24d4cc31d5a442c6963898d4ea09177be094659b5faebf87f552
|
SHA512
|
3f65bad24f0a93a37c9570c4e85142c36390b49f832345c084b693048fda1540d6be200903483143f343783d32d4f475bd0f9411078621e60315bd331ff9d21a
|
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>BINDERDatabase</artifactId>
<packaging>jar</packaging>
<name>BINDERDatabase</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>de.uni-potsdam.hpi</groupId>
<artifactId>utils</artifactId>
<version>0.0.1-calcite-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.metanome</groupId>
<artifactId>algorithm_integration</artifactId>
</dependency>
<dependency>
<groupId>de.metanome.algorithms.binder</groupId>
<artifactId>BINDERAlgorithm</artifactId>
<version>1.2-calcite-SNAPSHOT</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.BINDERDatabase
</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>
</plugins>
</build>
</project>