hmm-lib-1.0-pre16.pom

Hidden Markov Model (HMM) library for time-inhomogeneous Markov processes

Checksums

MD5 bf9abba7a05b32eaf45b64a30a4abc16
SHA1 bbfcefaa08c3dc399a7919af6f60754835bb4bfe
SHA256 1d7d0c1f61bf7137b8071b55696ad0ea198f8890a2761015e04ccb58190b2145
SHA512 3f24783247d77abb2b35c011fc5c2050c848300dab02a35ecbeb15d1db0fca36d8ecbc19e60a541f9a1cb47727c036a22fa23c18b7d4393273bc629ae51bc9b7

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">
    <!--
   ~ Copyright (C) 2015-2016, BMW Car IT GmbH and BMW AG
   ~ Author: Stefan Holder (stefan.holder@bmw.de)
   ~
   ~ Licensed under the Apache License, Version 2.0 (the "License");
   ~ you may not use this file except in compliance with the License.
   ~ You may obtain a copy of the License at
   ~
   ~    http://www.apache.org/licenses/LICENSE-2.0
   ~
   ~ Unless required by applicable law or agreed to in writing, software
   ~ distributed under the License is distributed on an "AS IS" BASIS,
   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
    -->
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.graphhopper.external</groupId>
    <artifactId>hmm-lib</artifactId>
    <!-- SNAPSHOT is necessary otherwise it says: Deployment failed: repository element was not specified in the POM inside distributionManagement element-->
    <version>1.0-pre16</version>
    <packaging>jar</packaging>
  
    <name>hmm-lib</name>
    <description>Hidden Markov Model (HMM) library for time-inhomogeneous Markov processes</description>
    <url>https://github.com/bmwcarit/hmm-lib</url>

    <parent>
        <groupId>com.graphhopper</groupId>
        <artifactId>graphhopper-map-matching-parent</artifactId>    	
        <version>1.0-pre16</version>
    </parent>

    <developers>
        <developer>
            <organization>BMW Car IT GmbH, BMW AG</organization>
            <organizationUrl>http://www.bmw-carit.com, http://www.bmw.com</organizationUrl>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git@github.com:bmwcarit/hmm-lib.git</connection>
        <developerConnection>scm:git:git@github.com:bmwcarit/hmm-lib.git</developerConnection>
        <url>git@github.com:bmwcarit/hmm-lib</url>
    </scm>

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

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
            <version>4.11</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>