Commit c1cfe92a authored by Filippo Carone's avatar Filippo Carone

jvlc: maven assembly plugin config added

parent 72e25cde
...@@ -11,6 +11,24 @@ ...@@ -11,6 +11,24 @@
<packaging>jar</packaging> <packaging>jar</packaging>
<name>JVLC - Core</name> <name>JVLC - Core</name>
<description>Java Bindings for VideoLAN - Core</description> <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> <dependencies>
<dependency> <dependency>
<groupId>com.jna</groupId> <groupId>com.jna</groupId>
...@@ -29,9 +47,10 @@ ...@@ -29,9 +47,10 @@
<version>1.5.2</version> <version>1.5.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<version>1.3.2</version> <version>1.3.2</version>
<scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<ciManagement> <ciManagement>
...@@ -56,4 +75,4 @@ ...@@ -56,4 +75,4 @@
</snapshots> </snapshots>
</repository> </repository>
</repositories> </repositories>
</project> </project>
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment