Commit db39ed11 authored by Adrien Grand's avatar Adrien Grand Committed by Filippo Carone

[PATCH] Maven2 plugins

Signed-off-by: default avatarFilippo Carone <littlejohn@videolan.org>
parent fc3815a7
<?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>
<groupId>org.videolan</groupId>
<artifactId>jvlc-parent</artifactId>
<version>0.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JVLC</name>
<description>Java Bindings for VideoLAN</description>
<version>0.9.0-SNAPSHOT</version>
<url>http://jvlc.ihack.it/</url>
<inceptionYear>2005</inceptionYear>
<organization>
<name>The VideoLAN Team</name>
<url>http://www.videolan.org/</url>
</organization>
<licenses>
<license>
<name>GPLv2</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
</license>
</licenses>
<issueManagement>
<system>Trac</system>
<url>http://trac.videolan.org/jvlc</url>
</issueManagement>
<developers>
<developer>
<name>Filippo Carone</name>
<id>littlejohn</id>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<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-pmd-plugin</artifactId>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<targetJdk>1.6</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>
http://java.sun.com/javase/6/docs/api/
</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>issue-tracking</report>
<report>project-team</report>
<report>license</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<modules>
<module>core</module>
<module>samples</module>
</modules>
</project>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment