UEB Listener Final cleanup of deprecated sdc-tosca parser APIs
[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>standalone-parent</artifactId>
8         <version>1.5.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.northbound</groupId>
12     <artifactId>ueb-listener</artifactId>
13     <version>0.7.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         <skip.SWM>true</skip.SWM>
21         <ueb.listener.base>/opt/app/ueb-listener</ueb.listener.base>
22         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
23         <build.number>${maven.build.timestamp}</build.number>
24         <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
25         <ccsdk.sli.core.version>0.7.0-SNAPSHOT</ccsdk.sli.core.version>
26         <ccsdk.sli.northbound.version>${project.version}</ccsdk.sli.northbound.version>
27     </properties>
28     
29     <dependencyManagement>
30         <dependencies>
31             <dependency>
32                 <groupId>org.onap.ccsdk.sli.core</groupId>
33                 <artifactId>sli-core-artifacts</artifactId>
34                 <version>${ccsdk.sli.core.version}</version>
35                 <type>pom</type>
36                 <scope>import</scope>
37             </dependency>
38         </dependencies>
39     </dependencyManagement>
40
41     <dependencies>
42     
43
44         <dependency>
45             <groupId>org.onap.sdc.sdc-distribution-client</groupId>
46             <artifactId>sdc-distribution-client</artifactId>
47             <version>1.4.1-SNAPSHOT</version>
48             <scope>compile</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.onap.sdc.sdc-tosca</groupId>
52             <artifactId>sdc-tosca</artifactId>
53             <scope>compile</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.apache.logging.log4j</groupId>
61             <artifactId>log4j-slf4j-impl</artifactId>
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             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.testng</groupId>
78             <artifactId>testng</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.mockito</groupId>
83             <artifactId>mockito-core</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>ch.vorburger.mariaDB4j</groupId>
88             <artifactId>mariaDB4j</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.onap.ccsdk.sli.core</groupId>
93             <artifactId>dblib-provider</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>commons-codec</groupId>
97             <artifactId>commons-codec</artifactId>
98             <version>1.13</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.8</source>
115                     <target>1.8</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>