<?xml version="1.0"?>
<project>
	<pomVersion>3</pomVersion>
	<name>statsvn</name>
	<id>statsvn</id>
	<groupId>net.sf.statsvn</groupId>
	<currentVersion>${statsvn.version}</currentVersion>

    <organization>
        <name>Appendium - Portfolio Financing Platform</name>
        <url>http://www.appendium.com/</url>
        <logo>http://www.appendium.com/openimages/appendium_logo.jpg</logo>
    </organization>

	<inceptionYear>2006</inceptionYear>
	<package>net.sf.statsvn</package>

	<logo>statsvn.png</logo>
	<shortDescription>StatSVN, stat your repository</shortDescription>
	<description>
		StatSVN retrieves information from a Subversion repository and
		generates various tables and charts describing the project
		development, e.g. timeline for the lines of code, contribution
		of each developer etc. The current version of StatSVN generates
		a static suite of HTML documents containing tables and chart
		images. StatSVN is open source software, released under the
		terms of the LGPL, based on StatCVS.

		StatSVN uses JFreeChart to generate charts.
	</description>

	<url>http://www.statsvn.org</url>
	<issueTrackingUrl>
		http://sourceforge.net/tracker/?group_id=164845
	</issueTrackingUrl>
	<siteAddress>http://www.statsvn.org</siteAddress>
	<siteDirectory>
		/home/groups/s/st/statsvn/htdocs/maven
	</siteDirectory>

	<repository>
		<url>http://svn.sourceforge.net/statsvn</url>
		<connection>
			scm:svn:https://svn.sourceforge.net/svnroot/statsvn/trunk
		</connection>
		<developerConnection>
			scm:svn:https://svn.sourceforge.net/svnroot/statsvn/trunk
		</developerConnection>
	</repository>

	<mailingLists>
	      <mailingList>
	         <name>StatSvn Announcements (via ObjectLab Kit list)</name>
	         <subscribe>
	            http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce
	         </subscribe>
	         <unsubscribe>
	            http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce
	         </unsubscribe>
	         <archive>
	            http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce
	         </archive>
	      </mailingList>
		<mailingList>
			<name>statsvn-users</name>
			<subscribe>
				http://lists.sourceforge.net/mailman/listinfo/statsvn-users
			</subscribe>
			<unsubscribe>
				http://lists.sourceforge.net/mailman/listinfo/statsvn-users
			</unsubscribe>
			<post/>
			<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=statsvn-users</archive>
		</mailingList>
		<mailingList>
			<name>statsvn-developers</name>
			<subscribe>
				http://lists.sourceforge.net/mailman/listinfo/statsvn-developers
			</subscribe>
			<unsubscribe>
				http://lists.sourceforge.net/mailman/listinfo/statsvn-developers
			</unsubscribe>
		</mailingList>

      <mailingList>
         <name>News about ObjectLab's projects (Alerts online)</name>
         <subscribe>
            http://lists.sourceforge.net/lists/listinfo/objectlabkit-news
         </subscribe>
         <unsubscribe>
            http://lists.sourceforge.net/lists/listinfo/objectlabkit-news
         </unsubscribe>
         <post/>
         <archive>
            http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news
         </archive>
      </mailingList>
	</mailingLists>

	<developers>
		<developer>
			<name>Jason Kealey</name>
			<id>jkealey</id>
			<roles>
				<role>Project Lead</role>
			</roles>
		</developer>

		<developer>
			<name>Jean-Philippe Daigle</name>
			<id>jpdaigle</id>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>

		<developer>
			<name>Gunter Mussbacher</name>
			<id>gunterm</id>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>

		<developer>
			<name>Benoit Xhenseval</name>
			<id>benoitx</id>
			<email>benoitx AT sourceforge DOT net</email>
			<organization>ObjectLab Financial Ltd</organization>
			<roles>
				<role>Developer</role>
			</roles>
			<url>http://www.xhenseval.com</url>
			<timezone>+0</timezone>
		</developer>
		<developer>
			<name>Marcin Jekot</name>
			<id>marchy</id>
			<email>marchy at users dot sourceforge dot net</email>
			<organization>Individual</organization>
			<roles>
				<role>Maven Repo</role>
			</roles>
			<timezone>+0</timezone>
		</developer>
	</developers>

   	<contributors>
   	   <contributor>
		<name>Richard Cyganiak</name>
		<roles>
			<role>StatCVS Lead</role>
		</roles>
   	   </contributor>
   	</contributors>

	<dependencies>

		<dependency>
			<groupId>net.sf.statcvs</groupId>
			<artifactId>statcvs</artifactId>
			<version>0.4.0</version>
			<type>jar</type>
			<url>http://statcvs.sourceforge.net/</url>
		</dependency>
		<dependency>
			<groupId>backport-util-concurrent</groupId>
			<artifactId>backport-util-concurrent</artifactId>
			<version>3.0</version>
			<type>jar</type>
		</dependency>
		<dependency>
			<groupId>jfree</groupId>
			<artifactId>jfreechart</artifactId>
			<version>1.0.2</version>
			<type>jar</type>
			<url>http://www.jfree.org/</url>
		</dependency>
		<dependency>
			<groupId>jfree</groupId>
			<artifactId>jcommon</artifactId>
			<version>1.0.5</version>
			<type>jar</type>
			<url>http://www.jfree.org/</url>
		</dependency>

		<dependency>
			<id>ant</id>
			<version>1.6</version>
		</dependency>

		<dependency>
			<id>jdom</id>
			<version>0.7</version>
		</dependency>

		<dependency>
			<id>junit</id>
			<version>3.8.1</version>
			<url>http://www.junit.org/</url>
		</dependency>

	</dependencies>

	<build>
		<defaultGoal>jar:install</defaultGoal>

		<sourceDirectory>src</sourceDirectory>
		<unitTestSourceDirectory>tests-src</unitTestSourceDirectory>

		<!-- Unit test classes -->
		<unitTest>
			<includes>
				<include>**/SvnLogfileParserTest.java</include>
				<include>**/BuilderTest.java</include>
				<include>**/LinesOfCodeTest.java</include>
				<include>**/FileBuilderTest.java</include>
				<include>**/CommitListBuilderTest.java</include>
				<include>**/SvnInfoUtilTest.java</include>
			</includes>
			<resources>
				<resource>
					<directory>tests-src</directory>
					<includes>
						<include>**/*.log</include>
						<include>**/*.log2</include>
						<include>**/*.properties</include>
					</includes>
				</resource>
				<resource>
					<directory>src</directory>
					<includes>
						<include>**/*.properties</include>
						<include>**/web-files/**</include>
					</includes>
				</resource>
			</resources>
		</unitTest>

		<resources>
			<resource>
				<directory>src</directory>
				<includes>
					<include>**/*.properties</include>
					<include>**/web-files/**</include>
				</includes>
			</resource>
		</resources>

	</build>

	<versions>
		<version>
			<id>0.4.1</id>
			<name>0.4.1</name>
			<tag>0.4.1</tag>
		</version>
		<version>
			<id>0.4.0</id>
			<name>0.4.0</name>
			<tag>0.4.0</tag>
		</version>
		<version>
			<id>0.3.1</id>
			<name>0.3.1</name>
			<tag>0.3.1</tag>
		</version>
		<version>
			<id>0.3.0</id>
			<name>0.3.0</name>
			<tag>0.3.0</tag>
		</version>
		<version>
			<id>0.2.0</id>
			<name>0.2.0</name>
			<tag>0.2.0</tag>
		</version>
		<version>
			<id>0.1.3</id>
			<name>0.1.3</name>
			<tag>0.1.3</tag>
		</version>
	</versions>

	<reports>
		<report>maven-ydoc-plugin</report>
		<report>maven-jxr-plugin</report>
		<report>maven-junit-report-plugin</report>
		<report>maven-pmd-plugin</report>
		<report>maven-findbugs-plugin</report>
		<report>maven-checkstyle-plugin</report>
		<report>maven-simian-plugin</report>
		<report>maven-cobertura-plugin</report>
		<report>maven-qalab-plugin</report>
		<report>maven-license-plugin</report>
		<report>maven-jdepend-plugin</report>
		<report>maven-changes-plugin</report>
		<report>maven-changelog-plugin</report>
		<report>maven-file-activity-plugin</report>
		<report>maven-developer-activity-plugin</report>
		<report>maven-tasklist-plugin</report>
		<!--<report>maven-statcvs-plugin</report>-->
	</reports>

</project>
