<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">
 <!-- -Dmaven.test.skip=true -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>net.sourceforge</groupId>
  <artifactId>jwbf</artifactId>
  <packaging>pom</packaging>
  <name>JWBF</name>
  <version>1.3.0</version>
  <description>Java Wiki Bot Framework - A Wiki helper</description>
  <url>http://jwbf.sourceforge.net/</url>
  <issueManagement>
  	<system>Sourceforge</system>
  	<url>http://sourceforge.net/tracker/?group_id=192186</url>
  </issueManagement>
  <developers>
  </developers>
  <scm>
  	<connection>scm:svn:https://jwbf.svn.sourceforge.net/svnroot/jwbf</connection>
  	<tag>HEAD</tag>
  	<url>http://jwbf.svn.sourceforge.net/viewvc/jwbf/</url>
  </scm>
  <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>
  <build>
  	<resources>
  	</resources>
 
  	<plugins>
	<plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-site-plugin</artifactId>
		<version>2.0-beta-7</version>
		<configuration>
          <templateFile>${basedir}/util/resources/default-site.vm</templateFile>
        </configuration>
	</plugin>
	<plugin>
		<groupId>org.apache.maven.plugins</groupId>
		<artifactId>maven-compiler-plugin</artifactId>
		<version>2.0.2</version>
		<configuration>
			<source>1.5</source>
			<target>1.5</target>
		</configuration>
	</plugin>
  		
  	</plugins>
  	<extensions>
  	</extensions>

  	
  </build>
  <profiles>
  </profiles>
  <modules>
  	<module>core</module>
  	<module>wiki/mediawiki</module>
  	<module>wiki/zim</module>
  	<module>wiki/inyoka</module>
  </modules>
  <dependencies>
  </dependencies>
  <reporting>
  	<plugins>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-javadoc-plugin</artifactId>
  		</plugin>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-surefire-report-plugin</artifactId>

  		</plugin>
  		<plugin>
  			<groupId>org.codehaus.mojo</groupId>
  			<artifactId>taglist-maven-plugin</artifactId>
  			<configuration>
                       <tags>
                           <tag>TODO</tag>
                           <tag>FIXME</tag>
                           <tag>REFACTOR</tag>
                           <tag>@deprecated</tag>
                       </tags>
                  </configuration>

  		</plugin>
  	</plugins>
  </reporting>
  <distributionManagement>
  	<repository>
  	 <id>sourceforge.net</id>
      <url>sftp://web.sourceforge.net/home/groups/j/jw/jwbf/m2repo-release</url>
  	
  	</repository>
  	<snapshotRepository>
  		<id>sourceforge.net</id>
  		<url>sftp://web.sourceforge.net/home/groups/j/jw/jwbf/m2repo-snapshot</url>
  		<uniqueVersion>true</uniqueVersion>
  	</snapshotRepository>
  </distributionManagement>
</project>