blob: 2995f78cd430c7081ef32ead9c59894a9ff5e3e1 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.james.jspf</groupId>
<artifactId>jspf</artifactId>
<name>Apache James jSPF</name>
<version>0.9b1</version>
<description>
jspf implements the spf specification
</description>
<url>http://james.apache.org/jspf</url>
<inceptionYear>2006</inceptionYear>
<dependencies>
<dependency>
<groupId>dnsjava</groupId>
<artifactId>dnsjava</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
</dependency>
</dependencies>
<developers>
<developer>
<id>bago</id>
<name>Stefano Bagnara</name>
<email>apache@bago.org</email>
<timezone>2</timezone>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>norman</id>
<name>Norman Maurer</name>
<email>nm@byteaction.de</email>
<timezone>2</timezone>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<ciManagement>
<notifiers>
<notifier>
<type>mail</type>
<address>apache@bago.org</address>
</notifier>
<notifier>
<type>mail</type>
<address>nm@byteaction.de</address>
</notifier>
</notifiers>
</ciManagement>
<contributors>
<contributor>
<name>Roger Fullerton</name>
<properties>
<description>
Wrote spfjava, the first spf implementation in java
</description>
</properties>
</contributor>
</contributors>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>JIRA</system>
<url>http://issues.apache.org/jira/browse/JSPF</url>
</issueManagement>
<scm>
<connection>
scm:svn:http://svn.apache.org/repos/asf/james/jspf/trunk
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/james/jspf/trunk
</developerConnection>
<url>
http://svn.apache.org/viewcvs.cgi/james/jspf/trunk/?root=Apache-SVN
</url>
</scm>
<mailingLists>
<mailingList>
<name>Apache jSPF Developement</name>
<subscribe>server-dev-subscribe@james.apache.org</subscribe>
<unsubscribe>
server-dev-unsubscribe@james.apache.org
</unsubscribe>
<post>server-dev@james.apache.org</post>
<archive>
http://mail-archives.apache.org/mod_mbox/james-server-dev/
</archive>
</mailingList>
</mailingLists>
<reporting>
<plugins>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changelog-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
-->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetjdk>1.4</targetjdk>
<rulesets>
<ruleset>/rulesets/basic.xml</ruleset>
<ruleset>/rulesets/controversial.xml</ruleset>
</rulesets>
<format>xml</format>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<artifactId>maven-clover-plugin</artifactId>
<configuration>
<generateHtml>true</generateHtml>
<generatePdf>false</generatePdf>
<generateXml>false</generateXml>
</configuration>
<executions>
<execution>
<phase>site</phase>
<goals>
<goal>instrument</goal>
<goal>clover</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<!--
<index>true</true>
-->
<manifest>
<mainClass>org.apache.james.jspf.SPFQuery</mainClass>
<packageName>org.apache.james.jspf</packageName>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>${pom.url}</url>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>