Whitespace fix
[fiscal-year.java.git] / pom.xml
blobb235e3eb9edd5b428397c6ea60e3723edbfff044
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3  * This program is free software. It comes without any warranty, to
4  * the extent permitted by applicable law. You can redistribute it
5  * and/or modify it under the terms of the Do What The Fuck You Want
6  * To Public License, Version 2, as published by Sam Hocevar. See
7  * http://www.wtfpl.net/ for more details.
8 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
9 <project 
10   xmlns="http://maven.apache.org/POM/4.0.0"
11   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14   <modelVersion>4.0.0</modelVersion>
16   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17   <!--                                 PARENT                                  -->
18   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
19   <parent>
20     <groupId>com.github.sebhoss</groupId>
21     <artifactId>java-parent</artifactId>
22     <version>1.0.2</version>
23   </parent>
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!--                               INFORMATIONS                              -->
27   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28   <artifactId>fiscal-year</artifactId>
29   <version>1.0.0-SNAPSHOT</version>
30   <dependencies>
31     <dependency>
32       <groupId>joda-time</groupId>
33       <artifactId>joda-time</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>com.github.sebhoss</groupId>
42       <artifactId>common-annotations</artifactId>
43       <version>1.0.0</version>
44     </dependency>
45     <dependency>
46       <groupId>com.google.guava</groupId>
47       <artifactId>guava</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.github.sebhoss.datasets</groupId>
51       <artifactId>datasets</artifactId>
52       <version>0.0.1-SNAPSHOT</version>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56 </project>