]> git.sesse.net Git - vlc/blobdiff - bindings/java/core/pom.xml
taglib: Fix #2466 and fix also for writting tag on win.
[vlc] / bindings / java / core / pom.xml
index 1b58dd793bb38226db6aae7aaa721d5853c41758..4aaf4766c36cc55c404e3cce9cf0c11d76c9917d 100644 (file)
@@ -5,17 +5,35 @@
   <parent>
     <groupId>org.videolan</groupId>
     <artifactId>jvlc-parent</artifactId>
-    <version>0.9.0-SNAPSHOT</version>
+    <version>1.0.0-SNAPSHOT</version>
   </parent>
   <artifactId>jvlc-core</artifactId>
   <packaging>jar</packaging>
   <name>JVLC - Core</name>
   <description>Java Bindings for VideoLAN - Core</description>
+  <licenses>
+    <license>
+      <name>GPLv2</name>
+      <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
+    </license>
+  </licenses>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptorRefs>
+            <descriptorRef>jar-with-dependencies</descriptorRef>
+          </descriptorRefs>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
   <dependencies>
     <dependency>
-      <groupId>com.jna</groupId>
+      <groupId>net.java.dev.jna</groupId>
       <artifactId>jna</artifactId>
-      <version>3.0.2</version>
+      <version>3.0.9</version>
     </dependency>
     <dependency>
       <groupId>junit</groupId>
       <version>1.5.2</version>
     </dependency>
     <dependency>
-       <groupId>commons-io</groupId>
-       <artifactId>commons-io</artifactId>
-       <version>1.3.2</version>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.3.2</version>
+      <scope>test</scope>
     </dependency>
   </dependencies>
   <ciManagement>
         <enabled>false</enabled>
       </snapshots>
     </repository>
+    <repository>
+      <id>central</id>
+      <name>Maven Repository</name>
+      <url>http://repo1.maven.org/maven2</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
   </repositories>
-</project>
\ No newline at end of file
+</project>