]> git.sesse.net Git - vlc/blob - bindings/java/core/pom.xml
centralize maven compiler plugin
[vlc] / bindings / java / core / 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   <parent>
5     <groupId>org.videolan</groupId>
6     <artifactId>jvlc-parent</artifactId>
7     <version>0.9.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>jvlc-core</artifactId>
10   <packaging>jar</packaging>
11   <name>JVLC - Core</name>
12   <description>Java Bindings for VideoLAN - Core</description>
13   <dependencies>
14     <dependency>
15       <groupId>com.jna</groupId>
16       <artifactId>jna</artifactId>
17       <version>3.0.2</version>
18     </dependency>
19     <dependency>
20       <groupId>junit</groupId>
21       <artifactId>junit</artifactId>
22       <version>4.4</version>
23       <scope>test</scope>
24     </dependency>
25   </dependencies>
26   <repositories>
27     <repository>
28       <id>jvlc</id>
29       <name>JVLC Maven Repository</name>
30       <url>http://jvlc.ihack.it/maven2</url>
31       <snapshots>
32         <enabled>false</enabled>
33       </snapshots>
34     </repository>
35   </repositories>
36 </project>