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