<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>org.jwall</groupId>
  <artifactId>jwall-rbld</artifactId>
  <name>jwall-rbld</name>
  <version>0.3</version>
  <description>A small and compact micro DNS server for real time block lists.</description>
  <dependencies>
  	<dependency>
  		<groupId>org.slf4j</groupId>
  		<artifactId>slf4j-api</artifactId>
  		<version>[1.6.1,)</version>
  	</dependency>
  	<dependency>
  		<groupId>commons-daemon</groupId>
  		<artifactId>commons-daemon</artifactId>
  		<version>1.0.3</version>
  	</dependency>
  	<dependency>
  		<groupId>org.slf4j</groupId>
  		<artifactId>slf4j-log4j12</artifactId>
  		<version>[1.6.1,)</version>
  		<type>jar</type>
  		<scope>compile</scope>
  	</dependency>
  	<dependency>
  		<groupId>log4j</groupId>
  		<artifactId>log4j</artifactId>
  		<version>1.2.12</version>
  		<type>jar</type>
  		<scope>compile</scope>
  	</dependency>
  	<dependency>
  		<groupId>junit</groupId>
  		<artifactId>junit</artifactId>
  		<version>4.10</version>
		<scope>test</scope>
  	</dependency>
  </dependencies>

	<distributionManagement>
		<repository>
			<id>sonatype-releases</id>
			<name>sonatype Maven Staging Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
		<snapshotRepository>
			<id>sonatype-snapshots</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<site> 
    		<id>website</id> 
    		<url>scp://chris@jwall.org:/var/www/secure.jwall.org/htdocs/jwall-rbld/</url> 
  		</site> 
	</distributionManagement>

	<url>http://www.jwall.org/jwall-rbld</url>
	<issueManagement>
		<system>JIRA</system>
		<url>http://secure.jwall.org/bugs/browse/RBLD</url>
	</issueManagement>
	<mailingLists>
		<mailingList>
			<name>jwall-rbld</name>
			<post>jwall-rbld@lists.jwall.org</post>
			<archive>https://secure.jwall.org/pipermail/jwall-rbld/</archive>
			<subscribe>jwall-rbld-subscribe@lists.jwall.org</subscribe>
			<unsubscribe>jwall-rbld-unsubscribe@lists.jwall.org</unsubscribe>
		</mailingList>
	</mailingLists>
	<scm>
		<connection>scm:git:https://bitbucket.org/cbockermann/jwall-rbld</connection>
		<developerConnection>scm:git:https://bitbucket.org/cbockermann/jwall-rbld</developerConnection>
		<tag>HEAD</tag>
		<url>https://bitbucket.org/cbockermann/jwall-rbld</url>
	</scm>
	<developers>
      <developer>
         <id>chris</id>
         <name>Christian Bockermann</name>
         <email>chris@jwall.org</email>
         <roles>
            <role>Project Manager</role>
         </roles>
         <organization>jwall.org</organization>
         <timezone>+1</timezone>
       </developer>         
	</developers>	
	
	<licenses>
		<license>
			<name>GNU Public License GPL, Version 3.0</name>
			<url>LICENSE.txt</url>
		</license>
	</licenses>      

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<configuration>
					<finalName>jwall-rbld</finalName>
					<descriptorRefs>
						<descriptorRef>
							jar-with-dependencies
						</descriptorRef>
					</descriptorRefs>
					<archive>
						<manifest>
							<mainClass>org.jwall.rbl.RblServer</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.0.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<mainClass>org.jwall.rbl.RblServer</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>2.2</version>
				<dependencies>
					<dependency>
						<groupId>org.apache.maven.wagon</groupId>
						<artifactId>wagon-ssh</artifactId>
						<version>1.0-beta-7</version>
					</dependency>
				</dependencies>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.1</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>  
	
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.7</version>
        <configuration>
          <show>public</show>
          <show>protected</show>
        </configuration>
      </plugin>
    </plugins>
  </reporting>
</project>
