]> git.sesse.net Git - vlc/blob - bindings/java/pom.xml
more info about developers/contributors
[vlc] / bindings / java / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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 ">
3   <modelVersion>4.0.0</modelVersion>
4
5   <groupId>org.videolan</groupId>
6   <artifactId>jvlc-parent</artifactId>
7   <version>0.9.0-SNAPSHOT</version>
8   <packaging>pom</packaging>
9
10   <name>JVLC</name>
11   <description>Java Bindings for VideoLAN</description>
12   <url>http://jvlc.ihack.it/</url>
13   <inceptionYear>2005</inceptionYear>
14   <organization>
15     <name>The VideoLAN Team</name>
16     <url>http://www.videolan.org/</url>
17   </organization>
18
19   <licenses>
20     <license>
21       <name>GPLv2</name>
22       <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
23     </license>
24   </licenses>
25
26   <issueManagement>
27     <system>Trac</system>
28     <url>http://trac.videolan.org/jvlc</url>
29   </issueManagement>
30
31   <developers>
32     <developer>
33       <name>Filippo Carone</name>
34       <id>littlejohn</id>
35       <roles>
36         <role>developer</role>
37         <role>project admin</role>
38       </roles>
39       <timezone>+1</timezone>
40       <email>littlejohn[at]videolan[dot]org</email>
41     </developer>
42     <developer>
43       <name>Philippe Morin</name>
44       <id>phmo95</id>
45       <roles>
46         <role>developer</role>
47       </roles>
48       <email>phmorin[at]free[dot]fr</email>
49     </developer>
50   </developers>
51   <contributors>
52     <contributor>
53       <name>Adrien Grand</name>
54       <email>jpountz[at]jpountz[dot]net</email>
55     </contributor>
56   </contributors>
57   
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.maven.plugins</groupId>
62         <artifactId>maven-surefire-plugin</artifactId>
63       </plugin>
64     </plugins>
65   </build>
66
67   <reporting>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-surefire-report-plugin</artifactId>
72       </plugin>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-jxr-plugin</artifactId>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-pmd-plugin</artifactId>
80         <configuration>
81           <linkXref>true</linkXref>
82           <sourceEncoding>utf-8</sourceEncoding>
83           <targetJdk>1.5</targetJdk>
84         </configuration>
85       </plugin>
86       <plugin>
87         <groupId>org.codehaus.mojo</groupId>
88         <artifactId>cobertura-maven-plugin</artifactId>
89       </plugin>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-javadoc-plugin</artifactId>
93         <configuration>
94           <links>
95             <link>
96               http://java.sun.com/j2se/1.5.0/docs/api/
97             </link>
98           </links>
99         </configuration>
100       </plugin>
101       <plugin>
102         <groupId>org.apache.maven.plugins</groupId>
103         <artifactId>maven-project-info-reports-plugin</artifactId>
104         <reportSets>
105           <reportSet>
106             <reports>
107               <report>dependencies</report>
108               <report>issue-tracking</report>
109               <report>project-team</report>
110               <report>license</report>
111             </reports>
112           </reportSet>
113         </reportSets>
114       </plugin>
115     </plugins>
116   </reporting>
117
118   <modules>
119     <module>core</module>
120     <module>samples</module>
121   </modules>
122
123 </project>