]> git.sesse.net Git - vlc/blob - bindings/java/core/pom.xml
jvlc: log4j and ioutils dependencies added
[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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.videolan</groupId>
7     <artifactId>jvlc-parent</artifactId>
8     <version>0.9.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>jvlc-core</artifactId>
11   <packaging>jar</packaging>
12   <name>JVLC - Core</name>
13   <description>Java Bindings for VideoLAN - Core</description>
14   <dependencies>
15     <dependency>
16       <groupId>com.jna</groupId>
17       <artifactId>jna</artifactId>
18       <version>3.0.2</version>
19     </dependency>
20     <dependency>
21       <groupId>junit</groupId>
22       <artifactId>junit</artifactId>
23       <version>4.4</version>
24       <scope>test</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.slf4j</groupId>
28       <artifactId>slf4j-log4j12</artifactId>
29       <version>1.5.2</version>
30     </dependency>
31     <dependency>
32         <groupId>commons-io</groupId>
33         <artifactId>commons-io</artifactId>
34         <version>1.3.2</version>
35     </dependency>
36   </dependencies>
37   <ciManagement>
38     <system>Hudson</system>
39     <url>http://hudson.videolan.org/</url>
40   </ciManagement>
41   <repositories>
42     <repository>
43       <id>jvlc</id>
44       <name>JVLC Maven Repository</name>
45       <url>http://jvlc.ihack.it/maven2</url>
46       <snapshots>
47         <enabled>false</enabled>
48       </snapshots>
49     </repository>
50   </repositories>
51 </project>