<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<name>Scheduled Task Manager</name>
	
	<groupId>de.dnb</groupId>
	<artifactId>scheduled-task-manager</artifactId>
	<version>1.1.0</version>
	<packaging>jar</packaging>

	<url>http://oaiharvestmangr.sourceforge.net/</url>

	<organization>
		<name>Deutsche Nationalbibliothek / German National Library</name>
		<url>http://dnb.de</url>
	</organization>
	
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
			<distribution>repo</distribution>
			<comments>A business-friendly Free and Open Source Software (FOSS) license.</comments>
		</license>
	</licenses>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<developers>
		<developer>
			<id>karaca</id>
			<name>Kadir Karaca Koçer</name>
			<url>http://sourceforge.net/users/karaca</url>
			<organization>Deutsche Nationalbibliothek / German National Library</organization>
			<organizationUrl>http://dnb.de</organizationUrl>
			<roles>
				<role>architect</role>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
			<properties>
				<picUrl>https://secure.gravatar.com/avatar/15ada2c558ecdd29c092e9b0063806c3.png</picUrl>
			</properties>
		</developer>
		<developer>
			<id>juergen_kett</id>
			<name>Jürgen Kett</name>
			<url>http://sourceforge.net/users/juergen_kett</url>
			<organization>Deutsche Nationalbibliothek / German National Library</organization>
			<organizationUrl>http://dnb.de</organizationUrl>
			<roles>
				<role>architect</role>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
			<properties>
				<picUrl />
			</properties>
		</developer>
		<developer>
			<id>m-neubauer-dnb</id>
			<name>Matthias Neubauer</name>
			<url>http://sourceforge.net/users/m-neubauer-dnb</url>
			<organization>Deutsche Nationalbibliothek / German National Library</organization>
			<organizationUrl>http://dnb.de</organizationUrl>
			<roles>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
			<properties>
				<picUrl>http://profile.ak.fbcdn.net/hprofile-ak-snc4/41396_100001386767612_4820_n.jpg</picUrl>
			</properties>
		</developer>
		<developer>
			<id>t-heck</id>
			<name>Timo Heck</name>
			<url>http://sourceforge.net/users/t-heck</url>
			<organization>Deutsche Nationalbibliothek / German National Library</organization>
			<organizationUrl>http://dnb.de</organizationUrl>
			<roles>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
			<properties>
				<picUrl />
			</properties>
		</developer>
		<developer>
			<id>thomasha09</id>
			<name>Thomas Haidlas</name>
			<url>http://sourceforge.net/users/thomasha09</url>
			<organization>Deutsche Nationalbibliothek / German National Library</organization>
			<organizationUrl>http://dnb.de</organizationUrl>
			<roles>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
			<properties>
				<picUrl />
			</properties>
		</developer>
	</developers>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<scm>
		<url>https://oaiharvestmangr.svn.sourceforge.net/svnroot/oaiharvestmangr/scheduled-task-manager/trunk</url>
		<connection>scm:svn:https://oaiharvestmangr.svn.sourceforge.net/svnroot/oaiharvestmangr/scheduled-task-manager/trunk</connection>
		<developerConnection>scm:svn:https://oaiharvestmangr.svn.sourceforge.net/svnroot/oaiharvestmangr/scheduled-task-manager/trunk</developerConnection>
		<tag>HEAD</tag>
	</scm>

	<distributionManagement>
		<repository>
			<id>sonatype-nexus-staging</id>
			<name>Sonatype OSS Maven Repository : Releases</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
		<snapshotRepository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype OSS Maven Repository : Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
			<uniqueVersion>true</uniqueVersion>
		</snapshotRepository>
	</distributionManagement>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.7.2</version>
				<configuration>
					<skipTests>false</skipTests>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<show>public</show>
							<nohelp>true</nohelp>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1.2</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.0</version>
				<configuration>
					<locales>de,en</locales>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.1.1</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
			<version>3.1.2.RELEASE</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>3.1.2.RELEASE</version>
		</dependency>
		
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.10</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.17</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>
