<?xml version="1.0" encoding="UTF-8"?>
<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>
<name>AceLogger</name>
<url>http://acelogger.sourceforge.net/</url>
<inceptionYear>2007</inceptionYear>
<description>AceLogger is a new approach to logging frameworks. It provides multiple appenders, with it's own configuration (like formatters, filters and so on) and the possibility to target multiple sources to a given appender.</description>
<organization>
<name>The AceLogger Team</name>
</organization>
<groupId>net.sourceforge.acelogger</groupId>
<artifactId>acelogger</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<distributionManagement>
<snapshotRepository>
<id>acelogger.sourceforge.repository.snapshot</id>
<url>scp://shell.sourceforge.net/home/groups/a/ac/acelogger/htdocs/maven2/snapshot</url>
<uniqueVersion>true</uniqueVersion>
</snapshotRepository>
<site>
<id>acelogger.sourceforge.site</id>
<url>
scp://shell.sourceforge.net/home/groups/a/ac/acelogger/htdocs/
</url>
</site>
<downloadUrl>
http://prdownloads.sourceforge.net/acelogger
</downloadUrl>
<repository>
<id>acelogger.sourceforge.repository</id>
<url>
scp://shell.sourceforge.net/home/groups/a/ac/acelogger/htdocs/maven2
</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
</license>
</licenses>
<scm>
<connection>
scm:svn:https://acelogger.svn.sourceforge.net/svnroot/acelogger
</connection>
<developerConnection>
scm:svn:https://acelogger.svn.sourceforge.net/svnroot/acelogger
</developerConnection>
<url>
http://acelogger.svn.sourceforge.net/viewvc/acelogger/
</url>
</scm>
<mailingLists>
<mailingList>
<name>AceLogger Development Mailing list</name>
<subscribe>-</subscribe>
<unsubscribe>-</unsubscribe>
<archive>
http://sourceforge.net/mailarchive/forum.php?forum_name=acelogger-developers
</archive>
</mailingList>
<mailingList>
<name>AceLogger User Mailing list</name>
<subscribe>
http://lists.sourceforge.net/mailman/listinfo/acelogger-users
</subscribe>
<unsubscribe>
http://lists.sourceforge.net/mailman/listinfo/acelogger-users
</unsubscribe>
<archive>
http://sourceforge.net/mailarchive/forum.php?forum_name=acelogger-users
</archive>
<post>acelogger-users@lists.sourceforge.net</post>
</mailingList>
</mailingLists>
<issueManagement>
<system>Trac</system>
<url>https://sourceforge.net/apps/trac/acelogger</url>
</issueManagement>
<developers>
<developer>
<id>daniel_zardi</id>
<name>Daniel Zardi Fernandes</name>
<url>https://sourceforge.net/users/daniel_zardi</url>
<timezone>-3</timezone>
<roles>
<role>Project Leader</role>
<role>Architect</role>
<role>Commiter</role>
</roles>
</developer>
<developer>
<id>diegovivencio</id>
<name>Diego Pagliarini Vivencio</name>
<url>https://sourceforge.net/users/diegovivencio</url>
<timezone>-3</timezone>
<roles>
<role>Architect</role>
<role>Commiter</role>
</roles>
</developer>
<developer>
<id>arthursouza</id>
<name>Arthur Miranda Souza</name>
<url>https://sourceforge.net/users/arthursouza</url>
<timezone>-3</timezone>
<roles>
<role>Commiter</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>André Willik Valenti
</name>
<url>https://sourceforge.net/users/awvalenti</url>
<timezone>-3</timezone>
<roles>
<role>Brainstormer</role>
</roles>
</contributor>
</contributors>
<repositories>
<repository>
<id>jboss.com</id>
<name>http://repository.jboss.com/maven2</name>
<url>http://repository.jboss.com/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>apache.org</id>
<name>Apache Plugin Snapshots</name>
<url>
http://people.apache.org/repo/m2-snapshot-repository
</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<verbose>true</verbose>
<debug>true</debug>
<executable>${acelogger.build.javac.path}</executable>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<locales>en</locales>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>
net.sourceforge.cobertura.datafile
</name>
<value>
${basedir}/target/cobertura/cobertura.ser
</value>
</property>
</systemProperties>
<suiteXmlFiles>
<suiteXmlFile>
${basedir}/src/test/config/all-suites.xml
</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<instrumentation>
<includes>
<include>**/*.class</include>
</includes>
<excludes>
<exclude>**/*Test.class</exclude>
</excludes>
</instrumentation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<outputDirectory>${basedir}/target/distribution</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.5</targetJdk>
<rulesets>
<ruleset>
${basedir}/src/config/pmd/pmd-acelogger.xml
</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
<configuration>
<executable>${acelogger.build.javadoc.path}</executable>
<links>
<link>
http://java.sun.com/j2se/1.5.0/docs/api
</link>
<link>http://testng.org/javadocs/</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<failsOnError>false</failsOnError>
<configLocation>
${basedir}/src/config/checkstyle/checkstyle-acelogger.xml
</configLocation>
<propertiesLocation>
maven.properties
</propertiesLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<executions>
<execution>
<id>properties-maven-plugin-initialize</id>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>${basedir}/maven.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<type>jar</type>
<classifier>jdk15</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.3.1</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scannotation</groupId>
<artifactId>scannotation</artifactId>
<version>1.0.2</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.8.0.GA</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
<report>test-javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
<tag>@deprecated</tag>
<tag>FIXME</tag>
<tag>TODO</tag>
<tag>REMARK</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<xmlOutput>true</xmlOutput>
<threshold>Normal</threshold>
<effort>Max</effort>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.objectlab</groupId>
<artifactId>mvn-qalab-plugin</artifactId>
<version>2.2</version>
<reportSets>
<reportSet>
<reports>
<report>report-merge-chart</report>
<report>report-movers-all</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
<reportSets>
<reportSet>
<reports>
<report>summary</report>
<report>license</report>
<report>project-team</report>
<report>dependencies</report>
<report>mailing-list</report>
<report>issue-tracking</report>
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>