]> git.sesse.net Git - vlc/blob - bindings/java/samples/client/pom.xml
[maven-release-plugin] prepare release jvlc-parent-1.0.1
[vlc] / bindings / java / samples / client / 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   <parent>
5     <groupId>org.videolan</groupId>
6     <artifactId>jvlc-samples</artifactId>
7     <version>1.0.1</version>
8   </parent>
9   <groupId>org.videolan</groupId>
10   <artifactId>jvlc-samples-client</artifactId>
11   <packaging>jar</packaging>
12   <name>JVLC - Client sample</name>
13   <description>Java Bindings for VideoLAN - Client sample</description>
14   <version>1.0.1</version>
15
16    <build>
17     <plugins>
18       <plugin>
19         <groupId>org.codehaus.mojo</groupId>
20         <artifactId>exec-maven-plugin</artifactId>
21         <executions>
22           <execution>
23             <goals>
24               <goal>java</goal>
25             </goals>
26           </execution>
27         </executions>
28         <configuration>
29           <mainClass>VlcClient</mainClass>
30         </configuration>
31       </plugin>
32       <plugin>
33         <artifactId>maven-assembly-plugin</artifactId>
34         <configuration>
35           <descriptorRefs>
36             <descriptorRef>jar-with-dependencies</descriptorRef>
37           </descriptorRefs>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42
43   <dependencies>
44     <dependency>
45       <groupId>org.videolan</groupId>
46       <artifactId>jvlc-core</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49   </dependencies>
50
51 </project>