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