dao-0.0.1-calcite-20190119.215900-2.pom

Checksums

MD5 de51e165fb611280d5c43a4dd1fb4d66
SHA1 383d9837919f7b63bab118b70cc58dbee394b20a
SHA256 2eedac9e25b239dd66a2fc8a8d2ab0c4fc07d06cbab350d584d7f3601712802d
SHA512 23fced6f95614861fb7e389c0afc2df5db0f4161c83b1c3d014036930f27508bb1097fa99788559eec172362729012c2f44b3f3224f56fb826975c821ce8cb1c

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>

  <groupId>de.uni-potsdam.hpi</groupId>
  <artifactId>dao</artifactId>
  <version>0.0.1-calcite-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>dao</name>

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

  <dependencies>
    <dependency>
      <groupId>de.uni-potsdam.hpi</groupId>
      <artifactId>utils</artifactId>
      <version>0.0.1-calcite-SNAPSHOT</version>
    </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>
    </plugins>
    <extensions>
      <extension>
        <groupId>io.packagecloud.maven.wagon</groupId>
        <artifactId>maven-packagecloud-wagon</artifactId>
        <version>0.0.6</version>
      </extension>
    </extensions>
  </build>
  <distributionManagement>
    <repository>
      <id>packagecloud-michaelmior</id>
      <url>packagecloud+https://packagecloud.io/michaelmior/Metanome</url>
    </repository>
    <snapshotRepository>
      <id>packagecloud-michaelmior</id>
      <url>packagecloud+https://packagecloud.io/michaelmior/Metanome</url>
    </snapshotRepository>
  </distributionManagement>
</project>