fix header
[fiscal-year.java.git] / pom.xml
blob674a0c274cecd1ce3672c9f64b27ec6b2f952764
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of fiscal-year. It is subject to the license terms in the LICENSE file found in the top-level
5     directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of fiscal-year,
6     including this file, may be copied, modified, propagated, or distributed except according to the terms contained
7     in the LICENSE file.
9 -->
10 <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/maven-v4_0_0.xsd">
11   <modelVersion>4.0.0</modelVersion>
13   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
14   <!--                                 PARENT                                  -->
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <parent>
17     <groupId>com.github.sebhoss</groupId>
18     <artifactId>java-parent</artifactId>
19     <version>3.0.0</version>
20   </parent>
22   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23   <!--                               INFORMATIONS                              -->
24   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25   <artifactId>fiscal-year</artifactId>
26   <version>2.0.0-SNAPSHOT</version>
27   <packaging>jar</packaging>
28   <url>https://github.com/sebhoss/fiscal-year</url>
29   <inceptionYear>2013</inceptionYear>
30   <name>Fiscal Year</name>
31   <description>Utility library to work with fiscal years.</description>
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <!--                                  SOURCE                                 -->
35   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36   <scm>
37     <connection>scm:git:git://github.com/sebhoss/fiscal-year.git</connection>
38     <developerConnection>scm:git:git@github.com:sebhoss/fiscal-year.git</developerConnection>
39     <tag>master</tag>
40     <url>${project.url}</url>
41   </scm>
43   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
44   <!--                               DEPENDENCIES                              -->
45   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
46   <dependencyManagement>
47     <dependencies>
48       <dependency>
49         <groupId>com.github.sebhoss.bom</groupId>
50         <artifactId>auto-managed</artifactId>
51         <version>2016.02.07</version>
52         <type>pom</type>
53         <scope>import</scope>
54       </dependency>
55     </dependencies>
56   </dependencyManagement>
57   <dependencies>
58     <dependency>
59       <groupId>com.github.sebhoss</groupId>
60       <artifactId>suppress-warnings</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
69 </project>