Update the version for dmaapclient
[ccsdk/sli/northbound.git] / dmaap-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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <parent>
7         <groupId>org.onap.ccsdk.parent</groupId>
8         <artifactId>odlparent-lite</artifactId>
9         <version>1.0.1-SNAPSHOT</version>
10     </parent>
11
12     <groupId>org.onap.ccsdk.sli.northbound</groupId>
13     <artifactId>dmaap-listener</artifactId>
14     <version>0.2.1-SNAPSHOT</version>
15     <packaging>jar</packaging>
16
17     <name>ccsdk-sli-northbound :: dmaap-listener</name>
18     <description>DMAAP Listener</description>
19
20     <properties>
21         <sdc.client.version>1.2.0-SNAPSHOT</sdc.client.version>
22         <fasterxml.jackson.version>2.9.4</fasterxml.jackson.version>
23         <velocity.version>2.0</velocity.version>
24         <skip.SWM>true</skip.SWM>
25         <dmaap.listener.base>/opt/app/dmaap-listener</dmaap.listener.base>
26         <dmaap.listener.version>1.1.5-SNAPSHOT</dmaap.listener.version>
27
28         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
29         <build.number>${maven.build.timestamp}</build.number>
30         <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
31     </properties>
32
33     <dependencies>
34
35         <dependency>
36             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
37             <artifactId>dmaapClient</artifactId>
38             <version>${dmaap.listener.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.slf4j</groupId>
42             <artifactId>slf4j-api</artifactId>
43             <version>1.7.21</version>
44         </dependency>
45         <dependency>
46             <groupId>org.slf4j</groupId>
47             <artifactId>slf4j-log4j12</artifactId>
48             <version>1.6.1</version>
49             <scope>compile</scope>
50         </dependency>
51         <dependency>
52             <groupId>log4j</groupId>
53             <artifactId>log4j</artifactId>
54             <version>1.2.17</version>
55         </dependency>
56         <dependency>
57             <groupId>com.fasterxml.jackson.core</groupId>
58             <artifactId>jackson-core</artifactId>
59             <version>${fasterxml.jackson.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>com.fasterxml.jackson.core</groupId>
63             <artifactId>jackson-databind</artifactId>
64             <version>${fasterxml.jackson.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>com.fasterxml.jackson.core</groupId>
68             <artifactId>jackson-annotations</artifactId>
69             <version>${fasterxml.jackson.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.apache.velocity</groupId>
73             <artifactId>velocity-engine-core</artifactId>
74             <version>${velocity.version}</version>
75         </dependency>        
76         <dependency>
77             <groupId>junit</groupId>
78             <artifactId>junit</artifactId>
79             <version>${junit.version}</version>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>ch.vorburger.mariaDB4j</groupId>
84             <artifactId>mariaDB4j</artifactId>
85             <version>2.2.3</version>
86             <scope>test</scope>
87         </dependency>
88
89         <dependency>
90             <groupId>org.onap.ccsdk.sli.core</groupId>
91             <artifactId>dblib-provider</artifactId>
92             <version>${sdnctl.dblib.version}</version>
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.7</source>
109                     <target>1.7</target>
110                 </configuration>
111             </plugin>
112             <plugin>
113                 <groupId>org.apache.maven.plugins</groupId>
114                 <artifactId>maven-jar-plugin</artifactId>
115                 <version>2.6</version>
116                 <configuration>
117                     <archive>
118                         <manifest>
119                             <addClasspath>true</addClasspath>
120                             <mainClass>org.onap.ccsdk.sli.northbound.dmaapclient.DmaapListener</mainClass>
121                         </manifest>
122                     </archive>
123                 </configuration>
124             </plugin>
125             <plugin>
126                 <artifactId>maven-assembly-plugin</artifactId>
127                 <version>2.6</version>
128                 <executions>
129                     <execution>
130                         <id>create-zip</id>
131                         <goals>
132                             <goal>single</goal>
133                         </goals>
134                         <phase>package</phase>
135                         <configuration>
136                             <attach>true</attach>
137                             <finalName>${project.artifactId}.${project.version}</finalName>
138                             <attach>true</attach>
139                             <descriptors>
140                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
141                             </descriptors>
142                             <appendAssemblyId>false</appendAssemblyId>
143                         </configuration>
144                     </execution>
145                 </executions>
146             </plugin>
147
148         </plugins>
149     </build>
150 </project>