<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>
	<groupId>de.jollyday</groupId>
	<artifactId>jollyday</artifactId>
	<name>Jollyday</name>
	<version>0.4.7</version>
	<description>
		This API determines the holidays for a given year, country/name and eventually state/region. The holiday data is stored in XML files (one for each country) and will be read from the classpath. You can provide your own holiday calendar XML file or use any of the provided ones.

Currently there are 63 countries supported like the following: United States, most european countries, Russia, India, Australia. 

Besides those there will be more special calendars like currently existing NYSE calendar (New York Stock Exchange).
	</description>
	<url>http://sourceforge.net/projects/jollyday</url>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.scm.id>sourceforge</project.scm.id>
	</properties>
	<developers>
		<developer>
			<id>diedrichsen</id>
			<email>sdiedrichsen@yahoo.de</email>
			<name>Sven Diedrichsen</name>
			<roles>
				<role>Admin</role>
				<role>Developer</role>
			</roles>
		</developer>
		<developer>
			<id>tboven</id>
			<email>tim.boven@telenet.be</email>
			<name>Tim Boven</name>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
		<developer>
			<id>stlum9495</id>
			<email>stephen.lum@gmail.com</email>
			<name>Stephen Lum</name>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
		<developer>
			<id>jppereira</id>
			<email>jpereira@linkare.com</email>
			<name>José Pereira</name>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
		<developer>
			<id>paulozenida</id>
			<email>pzenida@linkare.com</email>
			<name>Paulo Zenida</name>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
	</developers>
	<issueManagement>
		<system>Sourceforge</system>
		<url>http://sourceforge.net/tracker/?group_id=299729&amp;atid=1264280</url>
	</issueManagement>
	<inceptionYear>18.01.2010</inceptionYear>
	<scm>
		<connection>scm:svn:https://jollyday.svn.sourceforge.net/svnroot/jollyday/tags/v_0_4_7</connection>
		<developerConnection>scm:svn:https://jollyday.svn.sourceforge.net/svnroot/jollyday/tags/v_0_4_7</developerConnection>
		<url>https://jollyday.svn.sourceforge.net/svnroot/jollyday/tags/v_0_4_7</url>
	</scm>
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>jaxb2-maven-plugin</artifactId>
					<version>1.5</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>2.5.1</version>
					<configuration>
						<source>1.5</source>
						<target>1.5</target>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-site-plugin</artifactId>
					<version>3.1</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-release-plugin</artifactId>
					<version>2.3.2</version>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>jaxb2-maven-plugin</artifactId>
				<executions>
					<execution>
						<id>generate</id>
						<phase>generate-sources</phase>
						<goals>
							<goal>xjc</goal>
						</goals>
						<configuration>
							<outputDirectory>${project.build.directory}/generated-sources/jaxb</outputDirectory>
							<schemaDirectory>src/main/resources</schemaDirectory>
							<packageName>de.jollyday.config</packageName>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>package</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8.1</version>
				<executions>
					<execution>
						<id>jar-javadoc</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>joda-time</groupId>
			<artifactId>joda-time</artifactId>
			<version>2.1</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.10</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>javax.xml.bind</groupId>
			<artifactId>jaxb-api</artifactId>
			<version>2.2.7</version>
		</dependency>
		<dependency>
			<groupId>com.sun.xml.bind</groupId>
			<artifactId>jaxb-impl</artifactId>
			<version>2.2.7-b41</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>1.9.5</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<licenses>
		<license>
			<name>Apache 2</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
			<comments>A business-friendly OSS license</comments>
		</license>
	</licenses>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.5.1</version>
				<reportSets>
				</reportSets>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8.1</version>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.5.2</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>2.12.3</version>
			</plugin>
		</plugins>
	</reporting>
	<distributionManagement>
		<site>
			<id>shell.sourceforge.net</id>
			<url>scp://diedrichsen,jollyday@shell.sourceforge.net/home/project-web/jollyday/htdocs</url>
			<name>Sourceforge Site</name>
		</site>
	</distributionManagement>
</project>