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