fiscal-year
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.sebhoss</groupId>
<artifactId>fiscal-year</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of fiscal-year. It is subject to the license terms in the LICENSE file found in the top-level
directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of fiscal-year,
including this file, may be copied, modified, propagated, or distributed except according to the terms contained
in the LICENSE file.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PARENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<parent>
<groupId>com.github.sebhoss</groupId>
<artifactId>java-parent</artifactId>
<version>3.0.0</version>
</parent>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- INFORMATIONS -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<artifactId>fiscal-year</artifactId>
<version>2.0.0</version>
<packaging>jar</packaging>
<url>https://github.com/sebhoss/fiscal-year</url>
<inceptionYear>2013</inceptionYear>
<name>Fiscal Year</name>
<description>Utility library to work with fiscal years.</description>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- SOURCE -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<scm>
<connection>scm:git:git://github.com/sebhoss/fiscal-year.git</connection>
<developerConnection>scm:git:git@github.com:sebhoss/fiscal-year.git</developerConnection>
<tag>master</tag>
<url>${project.url}</url>
</scm>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DEPENDENCIES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.sebhoss.bom</groupId>
<artifactId>auto-managed</artifactId>
<version>2016.02.07</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.sebhoss</groupId>
<artifactId>suppress-warnings</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>