[maven-release-plugin] prepare release fiscal-year-1.0.0
[fiscal-year.java.git] / pom.xml
blob214da16eb57247ab8d1764f875323f72e7bacadd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This program is free software. It comes without any warranty, to
5     the extent permitted by applicable law. You can redistribute it
6     and/or modify it under the terms of the Do What The Fuck You Want
7     To Public License, Version 2, as published by Sam Hocevar. See
8     http://www.wtfpl.net/ for more details.
10 -->
11 <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">
13   <modelVersion>4.0.0</modelVersion>
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!--                                 PARENT                                  -->
17   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18   <parent>
19     <groupId>com.github.sebhoss</groupId>
20     <artifactId>java-parent</artifactId>
21     <version>1.0.2</version>
22   </parent>
24   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25   <!--                               INFORMATIONS                              -->
26   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27   <artifactId>fiscal-year</artifactId>
28   <version>1.0.0</version>
29   <packaging>jar</packaging>
30   <url>https://github.com/sebhoss/fiscal-year</url>
31   <inceptionYear>2013</inceptionYear>
32   <name>Fiscal Year</name>
33   <description>Utility library to work with fiscal years.</description>
35   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36   <!--                                  SOURCE                                 -->
37   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
38   <scm>
39     <connection>scm:git:git://github.com/sebhoss/fiscal-year.git</connection>
40     <developerConnection>scm:git:git@github.com:sebhoss/fiscal-year.git</developerConnection>
41     <tag>master</tag>
42     <url>${project.url}</url>
43   </scm>
45   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
46   <!--                                  ISSUES                                 -->
47   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
48   <issueManagement>
49     <system>GitHub</system>
50     <url>${project.url}/issues</url>
51   </issueManagement>
53   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
54   <!--                               DEPENDENCIES                              -->
55   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
56   <dependencies>
57     <dependency>
58       <groupId>joda-time</groupId>
59       <artifactId>joda-time</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>com.github.sebhoss</groupId>
63       <artifactId>common-annotations</artifactId>
64       <version>1.0.0</version>
65     </dependency>
66     <dependency>
67       <groupId>com.google.guava</groupId>
68       <artifactId>guava</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>junit</groupId>
72       <artifactId>junit</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>com.github.sebhoss</groupId>
77       <artifactId>datasets</artifactId>
78       <version>1.0.0</version>
79       <scope>test</scope>
80     </dependency>
81   </dependencies>
82 </project>