]> git.sesse.net Git - vlc/blobdiff - bindings/java/pom.xml
more info about developers/contributors
[vlc] / bindings / java / pom.xml
index 12c6a81e0bd8ab1f9c59242538756828963e8a1a..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</artifactId>
-  <packaging>jar</packaging>
+  <artifactId>jvlc-parent</artifactId>
+  <version>0.9.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
   <name>JVLC</name>
   <description>Java Bindings for VideoLAN</description>
-  <version>0.0.1-SNAPSHOT</version>
-   <build>
+  <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>
-        <artifactId>maven-compiler-plugin</artifactId>
+        <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>
-          <source>1.6</source>
-          <target>1.6</target>
+          <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>
-  </build> 
-  <dependencies>
-    <dependency>
-      <groupId>com.jna</groupId>
-      <artifactId>jna</artifactId>
-      <version>3.0.2</version>
-    </dependency>
-  </dependencies>
-  <repositories>
-    <repository>
-      <id>jvlc</id>
-      <name>JVLC Maven Repository</name>
-      <url>http://jvlc.ihack.it/maven2</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </repository>
-  </repositories></project>
+  </reporting>
+
+  <modules>
+    <module>core</module>
+    <module>samples</module>
+  </modules>
+
+</project>