]> git.sesse.net Git - vlc/blob - bindings/java/core/pom.xml
switch to jdk 1.5
[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    <build>
14     <plugins>
15       <plugin>
16         <artifactId>maven-compiler-plugin</artifactId>
17         <configuration>
18           <source>1.5</source>
19           <target>1.5</target>
20         </configuration>
21       </plugin>
22     </plugins>
23   </build> 
24   <dependencies>
25     <dependency>
26       <groupId>com.jna</groupId>
27       <artifactId>jna</artifactId>
28       <version>3.0.2</version>
29     </dependency>
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33       <version>4.4</version>
34       <scope>test</scope>
35     </dependency>
36   </dependencies>
37   <repositories>
38     <repository>
39       <id>jvlc</id>
40       <name>JVLC Maven Repository</name>
41       <url>http://jvlc.ihack.it/maven2</url>
42       <snapshots>
43         <enabled>false</enabled>
44       </snapshots>
45     </repository>
46   </repositories>
47 </project>