]> git.sesse.net Git - vlc/blob - bindings/java/pom.xml
8c02f0d595389b650d8f073fba445ed6c4c42a5c
[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     </developer>
36   </developers>
37
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.apache.maven.plugins</groupId>
42         <artifactId>maven-surefire-plugin</artifactId>
43       </plugin>
44     </plugins>
45   </build>
46
47   <reporting>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-surefire-report-plugin</artifactId>
52       </plugin>
53       <plugin>
54         <groupId>org.apache.maven.plugins</groupId>
55         <artifactId>maven-jxr-plugin</artifactId>
56       </plugin>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-pmd-plugin</artifactId>
60         <configuration>
61           <linkXref>true</linkXref>
62           <sourceEncoding>utf-8</sourceEncoding>
63           <targetJdk>1.6</targetJdk>
64         </configuration>
65       </plugin>
66       <plugin>
67         <groupId>org.codehaus.mojo</groupId>
68         <artifactId>cobertura-maven-plugin</artifactId>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-javadoc-plugin</artifactId>
73         <configuration>
74           <links>
75             <link>
76               http://java.sun.com/javase/6/docs/api/
77             </link>
78           </links>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-project-info-reports-plugin</artifactId>
84         <reportSets>
85           <reportSet>
86             <reports>
87               <report>dependencies</report>
88               <report>issue-tracking</report>
89               <report>project-team</report>
90               <report>license</report>
91             </reports>
92           </reportSet>
93         </reportSets>
94       </plugin>
95     </plugins>
96   </reporting>
97
98   <modules>
99     <module>core</module>
100     <module>samples</module>
101   </modules>
102
103 </project>