]> git.sesse.net Git - vlc/blob - bindings/java/pom.xml
specify license in pom
[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   <licenses>
22         <license>
23                 <name>GPLv2</name>
24                 <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
25         </license>
26   </licenses>
27   <dependencies>
28     <dependency>
29       <groupId>com.jna</groupId>
30       <artifactId>jna</artifactId>
31       <version>3.0.2</version>
32     </dependency>
33     <dependency>
34       <groupId>junit</groupId>
35       <artifactId>junit</artifactId>
36       <version>4.4</version>
37       <scope>test</scope>
38     </dependency>
39   </dependencies>
40   <repositories>
41     <repository>
42       <id>jvlc</id>
43       <name>JVLC Maven Repository</name>
44       <url>http://jvlc.ihack.it/maven2</url>
45       <snapshots>
46         <enabled>false</enabled>
47       </snapshots>
48     </repository>
49   </repositories></project>