Roll versions
[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.4.1-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.northbound</groupId>
12     <artifactId>ueb-listener</artifactId>
13     <version>0.6.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         <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.6.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             <scope>compile</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.onap.sdc.sdc-tosca</groupId>
51             <artifactId>sdc-tosca</artifactId>
52             <scope>compile</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.slf4j</groupId>
56             <artifactId>slf4j-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.apache.logging.log4j</groupId>
60             <artifactId>log4j-slf4j-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.fasterxml.jackson.core</groupId>
64             <artifactId>jackson-core</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.fasterxml.jackson.core</groupId>
68             <artifactId>jackson-databind</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.testng</groupId>
77             <artifactId>testng</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.mockito</groupId>
82             <artifactId>mockito-core</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>ch.vorburger.mariaDB4j</groupId>
87             <artifactId>mariaDB4j</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.onap.ccsdk.sli.core</groupId>
92             <artifactId>dblib-provider</artifactId>
93         </dependency>
94     </dependencies>
95
96     <build>
97         <plugins>
98
99             <!-- ================================================== -->
100             <!-- Set the JDK compiler version. -->
101             <!-- ================================================== -->
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-compiler-plugin</artifactId>
105                 <version>2.5.1</version>
106                 <inherited>true</inherited>
107                 <configuration>
108                     <source>1.8</source>
109                     <target>1.8</target>
110                 </configuration>
111             </plugin>
112
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-jar-plugin</artifactId>
116                 <version>2.6</version>
117                 <configuration>
118                     <archive>
119                         <manifest>
120                             <addClasspath>true</addClasspath>
121                             <mainClass>org.onap.ccsdk.sli.northbound.uebclient.SdncUebClient</mainClass>
122                         </manifest>
123                     </archive>
124                 </configuration>
125             </plugin>
126
127             <plugin>
128                 <artifactId>maven-assembly-plugin</artifactId>
129                 <version>2.6</version>
130                 <executions>
131                     <execution>
132                         <id>create-zip</id>
133                         <goals>
134                             <goal>single</goal>
135                         </goals>
136                         <phase>package</phase>
137                         <configuration>
138                             <attach>true</attach>
139                             <finalName>${project.artifactId}.${project.version}</finalName>
140                             <attach>true</attach>
141                             <descriptors>
142                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
143                             </descriptors>
144                             <appendAssemblyId>false</appendAssemblyId>
145                         </configuration>
146                     </execution>
147                 </executions>
148             </plugin>
149
150         </plugins>
151     </build>
152 </project>