Roll master to El Alto
[ccsdk/sli/northbound.git] / ueb-listener / 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/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>1.3.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.northbound</groupId>
12     <artifactId>ueb-listener</artifactId>
13     <version>0.5.0-SNAPSHOT</version>
14     <packaging>jar</packaging>
15
16     <name>ccsdk-sli-northbound :: ueb-listener</name>
17     <description>UEB Listener</description>
18
19     <properties>
20         <sdc.client.version>1.3.0</sdc.client.version>
21         <sdc.tosca.version>1.5.0</sdc.tosca.version>
22         <!--  Use managed version of jackson 
23         <fasterxml.jackson.version>2.9.4</fasterxml.jackson.version>
24         -->
25         <skip.SWM>true</skip.SWM>
26         <ueb.listener.base>/opt/app/ueb-listener</ueb.listener.base>
27         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
28         <build.number>${maven.build.timestamp}</build.number>
29         <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
30         <ccsdk.sli.northbound.version>${project.version}</ccsdk.sli.northbound.version>
31     </properties>
32
33     <dependencies>
34
35         <dependency>
36             <groupId>org.onap.sdc.sdc-distribution-client</groupId>
37             <artifactId>sdc-distribution-client</artifactId>
38             <version>${sdc.client.version}</version>
39             <scope>compile</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.onap.sdc.sdc-tosca</groupId>
43             <artifactId>sdc-tosca</artifactId>
44             <version>${sdc.tosca.version}</version>
45             <scope>compile</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.slf4j</groupId>
49             <artifactId>slf4j-api</artifactId>
50             <version>1.7.21</version>
51         </dependency>
52         <dependency>
53             <groupId>org.slf4j</groupId>
54             <artifactId>slf4j-log4j12</artifactId>
55             <version>1.6.1</version>
56             <scope>compile</scope>
57         </dependency>
58         <dependency>
59             <groupId>log4j</groupId>
60             <artifactId>log4j</artifactId>
61             <version>1.2.17</version>
62         </dependency>
63         <dependency>
64             <groupId>com.fasterxml.jackson.core</groupId>
65             <artifactId>jackson-core</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.fasterxml.jackson.core</groupId>
69             <artifactId>jackson-databind</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>junit</groupId>
73             <artifactId>junit</artifactId>
74             <version>${junit.version}</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.testng</groupId>
79             <artifactId>testng</artifactId>
80             <version>6.11</version>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.mockito</groupId>
85             <artifactId>mockito-core</artifactId>
86             <version>${mockito.version}</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>ch.vorburger.mariaDB4j</groupId>
91             <artifactId>mariaDB4j</artifactId>
92             <version>2.2.3</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.onap.ccsdk.sli.core</groupId>
97             <artifactId>dblib-provider</artifactId>
98             <version>${sdnctl.dblib.version}</version>
99         </dependency>
100     </dependencies>
101
102     <build>
103         <plugins>
104
105             <!-- ================================================== -->
106             <!-- Set the JDK compiler version. -->
107             <!-- ================================================== -->
108             <plugin>
109                 <groupId>org.apache.maven.plugins</groupId>
110                 <artifactId>maven-compiler-plugin</artifactId>
111                 <version>2.5.1</version>
112                 <inherited>true</inherited>
113                 <configuration>
114                     <source>1.7</source>
115                     <target>1.7</target>
116                 </configuration>
117             </plugin>
118
119             <plugin>
120                 <groupId>org.apache.maven.plugins</groupId>
121                 <artifactId>maven-jar-plugin</artifactId>
122                 <version>2.6</version>
123                 <configuration>
124                     <archive>
125                         <manifest>
126                             <addClasspath>true</addClasspath>
127                             <mainClass>org.onap.ccsdk.sli.northbound.uebclient.SdncUebClient</mainClass>
128                         </manifest>
129                     </archive>
130                 </configuration>
131             </plugin>
132
133             <plugin>
134                 <artifactId>maven-assembly-plugin</artifactId>
135                 <version>2.6</version>
136                 <executions>
137                     <execution>
138                         <id>create-zip</id>
139                         <goals>
140                             <goal>single</goal>
141                         </goals>
142                         <phase>package</phase>
143                         <configuration>
144                             <attach>true</attach>
145                             <finalName>${project.artifactId}.${project.version}</finalName>
146                             <attach>true</attach>
147                             <descriptors>
148                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
149                             </descriptors>
150                             <appendAssemblyId>false</appendAssemblyId>
151                         </configuration>
152                     </execution>
153                 </executions>
154             </plugin>
155
156         </plugins>
157     </build>
158 </project>