cd39863f6fd736b9168cf6d1789c849f424a6d8b
[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.1-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>${project.version}</ccsdk.sli.core.version>
26         <ccsdk.sli.northbound.version>${project.version}</ccsdk.sli.northbound.version>
27         <sdc.client.version>1.4.1-SNAPSHOT</sdc.client.version>
28         <sdc.tosca.version>1.6.5</sdc.tosca.version>
29     </properties>
30     
31     <dependencyManagement>
32         <dependencies>
33             <dependency>
34                 <groupId>org.onap.ccsdk.sli.core</groupId>
35                 <artifactId>sli-core-artifacts</artifactId>
36                 <version>${ccsdk.sli.core.version}</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43     <dependencies>
44     
45
46         <dependency>
47             <groupId>org.onap.sdc.sdc-distribution-client</groupId>
48             <artifactId>sdc-distribution-client</artifactId>
49             <version>${sdc.client.version}</version>
50             <scope>compile</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.onap.sdc.sdc-tosca</groupId>
54             <artifactId>sdc-tosca</artifactId>
55             <version>${sdc.tosca.version}</version>
56             <scope>compile</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.slf4j</groupId>
60             <artifactId>slf4j-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.logging.log4j</groupId>
64             <artifactId>log4j-slf4j-impl</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.fasterxml.jackson.core</groupId>
68             <artifactId>jackson-core</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.fasterxml.jackson.core</groupId>
72             <artifactId>jackson-databind</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.testng</groupId>
81             <artifactId>testng</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.mockito</groupId>
86             <artifactId>mockito-core</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>ch.vorburger.mariaDB4j</groupId>
91             <artifactId>mariaDB4j</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.onap.ccsdk.sli.core</groupId>
96             <artifactId>dblib-provider</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>commons-codec</groupId>
100             <artifactId>commons-codec</artifactId>
101             <version>1.13</version>
102         </dependency>
103     </dependencies>
104
105     <build>
106         <plugins>
107
108             <!-- ================================================== -->
109             <!-- Set the JDK compiler version. -->
110             <!-- ================================================== -->
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-compiler-plugin</artifactId>
114                 <version>2.5.1</version>
115                 <inherited>true</inherited>
116                 <configuration>
117                     <source>1.8</source>
118                     <target>1.8</target>
119                 </configuration>
120             </plugin>
121
122             <plugin>
123                 <groupId>org.apache.maven.plugins</groupId>
124                 <artifactId>maven-jar-plugin</artifactId>
125                 <version>2.6</version>
126                 <configuration>
127                     <archive>
128                         <manifest>
129                             <addClasspath>true</addClasspath>
130                             <mainClass>org.onap.ccsdk.sli.northbound.uebclient.SdncUebClient</mainClass>
131                         </manifest>
132                     </archive>
133                 </configuration>
134             </plugin>
135
136             <plugin>
137                 <artifactId>maven-assembly-plugin</artifactId>
138                 <version>2.6</version>
139                 <executions>
140                     <execution>
141                         <id>create-zip</id>
142                         <goals>
143                             <goal>single</goal>
144                         </goals>
145                         <phase>package</phase>
146                         <configuration>
147                             <attach>true</attach>
148                             <finalName>${project.artifactId}.${project.version}</finalName>
149                             <attach>true</attach>
150                             <descriptors>
151                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
152                             </descriptors>
153                             <appendAssemblyId>false</appendAssemblyId>
154                         </configuration>
155                     </execution>
156                 </executions>
157             </plugin>
158
159         </plugins>
160     </build>
161 </project>