Update dependencies
[fiscal-year.java.git] / pom.xml
blob3c105024cd9939ac7846645c20aaa140ed586244
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 
12   xmlns="http://maven.apache.org/POM/4.0.0"
13   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16   <modelVersion>4.0.0</modelVersion>
18   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
19   <!--                                 PARENT                                  -->
20   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
21   <parent>
22     <groupId>com.github.sebhoss</groupId>
23     <artifactId>java-parent</artifactId>
24     <version>1.0.2</version>
25   </parent>
27   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28   <!--                               INFORMATIONS                              -->
29   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
30   <artifactId>fiscal-year</artifactId>
31   <version>1.0.0-SNAPSHOT</version>
32   <dependencies>
33     <dependency>
34       <groupId>joda-time</groupId>
35       <artifactId>joda-time</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.github.sebhoss</groupId>
39       <artifactId>common-annotations</artifactId>
40       <version>1.0.0</version>
41     </dependency>
42     <dependency>
43       <groupId>com.google.guava</groupId>
44       <artifactId>guava</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>junit</groupId>
48       <artifactId>junit</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>com.github.sebhoss</groupId>
53       <artifactId>datasets</artifactId>
54       <version>1.0.0-SNAPSHOT</version>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58 </project>