]> git.sesse.net Git - vlc/blob - bindings/java/core/pom.xml
4aaf4766c36cc55c404e3cce9cf0c11d76c9917d
[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>1.0.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   <licenses>
15     <license>
16       <name>GPLv2</name>
17       <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
18     </license>
19   </licenses>
20   <build>
21     <plugins>
22       <plugin>
23         <artifactId>maven-assembly-plugin</artifactId>
24         <configuration>
25           <descriptorRefs>
26             <descriptorRef>jar-with-dependencies</descriptorRef>
27           </descriptorRefs>
28         </configuration>
29       </plugin>
30     </plugins>
31   </build>
32   <dependencies>
33     <dependency>
34       <groupId>net.java.dev.jna</groupId>
35       <artifactId>jna</artifactId>
36       <version>3.0.9</version>
37     </dependency>
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <version>4.4</version>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
46       <artifactId>slf4j-log4j12</artifactId>
47       <version>1.5.2</version>
48     </dependency>
49     <dependency>
50       <groupId>commons-io</groupId>
51       <artifactId>commons-io</artifactId>
52       <version>1.3.2</version>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56   <ciManagement>
57     <system>Hudson</system>
58     <url>http://hudson.videolan.org/</url>
59   </ciManagement>
60   <repositories>
61     <repository>
62       <id>jvlc</id>
63       <name>JVLC Maven Repository</name>
64       <url>http://jvlc.ihack.it/maven2</url>
65       <snapshots>
66         <enabled>false</enabled>
67       </snapshots>
68     </repository>
69     <repository>
70       <id>central</id>
71       <name>Maven Repository</name>
72       <url>http://repo1.maven.org/maven2</url>
73       <snapshots>
74         <enabled>false</enabled>
75       </snapshots>
76     </repository>
77   </repositories>
78 </project>