]> git.sesse.net Git - vlc/blobdiff - bindings/java/core/pom.xml
[maven-release-plugin] prepare for next development iteration
[vlc] / bindings / java / core / pom.xml
index 356eed8a43fa6ed8590a9047e779c3a7146d9d9f..dd5e2998f97d3573c0e63bae6e61a2a7f96e905f 100644 (file)
@@ -4,17 +4,35 @@
   <parent>
     <groupId>org.videolan</groupId>
     <artifactId>jvlc-parent</artifactId>
-    <version>0.9.0-SNAPSHOT</version>
+    <version>1.0.2-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>4.4</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.5.2</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.3.2</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
+  <ciManagement>
+    <system>Hudson</system>
+    <url>http://hudson.videolan.org/</url>
+  </ciManagement>
   <repositories>
     <repository>
       <id>jvlc</id>
         <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>