]> git.sesse.net Git - vlc/blobdiff - bindings/java/pom.xml
more info about developers/contributors
[vlc] / bindings / java / pom.xml
index 5cc7f0587a39342172a77acecfa44d6cfc274a1e..4fb0c7e4522243dd645a1e8cad67df55d65a7c90 100644 (file)
 <?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>
+      <roles>
+       <role>developer</role>
+       <role>project admin</role>
+      </roles>
+      <timezone>+1</timezone>
+      <email>littlejohn[at]videolan[dot]org</email>
+    </developer>
+    <developer>
+      <name>Philippe Morin</name>
+      <id>phmo95</id>
+      <roles>
+       <role>developer</role>
+      </roles>
+      <email>phmorin[at]free[dot]fr</email>
+    </developer>
+  </developers>
+  <contributors>
+    <contributor>
+      <name>Adrien Grand</name>
+      <email>jpountz[at]jpountz[dot]net</email>
+    </contributor>
+  </contributors>
+  
+  <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.5</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/j2se/1.5.0/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>