Change pom for ONAP
[music.git] / musictrigger / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>org.onap.music</groupId>
5         <artifactId>musictrigger</artifactId>
6         <packaging>jar</packaging>
7         <version>0.1.0</version>
8         <build>
9                 <sourceDirectory>src</sourceDirectory>
10                 <plugins>
11                         <plugin>
12                                 <artifactId>maven-compiler-plugin</artifactId>
13                                 <version>3.6.1</version>
14                                 <configuration>
15                                         <source>1.8</source>
16                                         <target>1.8</target>
17                                 </configuration>
18                         </plugin>
19                         <plugin>
20                                 <artifactId>maven-assembly-plugin</artifactId>
21                                 <configuration>
22                                         <archive>
23                                                 <manifest>
24                                                         <mainClass>fully.qualified.MainClass</mainClass>
25                                                 </manifest>
26                                         </archive>
27                                         <descriptorRefs>
28                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
29                                         </descriptorRefs>
30                                 </configuration>
31                         </plugin>
32                 </plugins>
33         </build>
34
35         <dependencies>
36                 <dependency>
37                         <groupId>com.owlike</groupId>
38                         <artifactId>genson</artifactId>
39                         <version>0.99</version>
40                 </dependency>
41                 <dependency>
42                         <groupId>com.sun.jersey</groupId>
43                         <artifactId>jersey-client</artifactId>
44                         <version>1.17</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>com.datastax.cassandra</groupId>
48                         <artifactId>cassandra-driver-core</artifactId>
49                         <version>3.0.0</version>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.cassandraunit</groupId>
53                         <artifactId>cassandra-unit</artifactId>
54                         <version>3.3.0.1</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>commons-codec</groupId>
58                         <artifactId>commons-codec</artifactId>
59                         <version>1.11</version>
60                 </dependency>
61         </dependencies>
62 </project>