[SDNC-14] Roll northbound to version 1.1.2
[sdnc/northbound.git] / dmaap-listener / pom.xml
1 <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">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>org.openecomp.sdnc.northbound</groupId>
4         <packaging>jar</packaging>
5         <artifactId>dmaap-listener</artifactId>
6         <version>1.1.2-SNAPSHOT</version>
7
8         <name>DMAAP Listener</name>
9         <description>DMAAP Listener</description>
10         <parent>
11                 <groupId>org.openecomp.sdnc.northbound</groupId>
12                 <artifactId>sdnc-northbound</artifactId>
13                 <version>1.1.2-SNAPSHOT</version>
14         </parent>
15         <properties>
16                 <sdc.client.version>1.1.7-SNAPSHOT</sdc.client.version>
17                 <fasterxml.jackson.version>2.9.0.pr1</fasterxml.jackson.version>
18                 <skip.SWM>true</skip.SWM>
19                 <dmaap.listener.base>/opt/app/dmaap-listener</dmaap.listener.base>
20                 <dmaap.listener.version>0.2.12</dmaap.listener.version>
21                 <maven.build.timestamp.format>yyMMdd-HHmmss</maven.build.timestamp.format>
22                 <build.number>${maven.build.timestamp}</build.number>
23                 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
24         </properties>
25
26         <dependencies>
27
28                 <dependency>
29                         <groupId>com.att.nsa</groupId>
30                         <artifactId>dmaapClient</artifactId>
31                         <version>${dmaap.listener.version}</version>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.slf4j</groupId>
35                         <artifactId>slf4j-api</artifactId>
36                         <version>1.7.10</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>slf4j-log4j12</artifactId>
41                         <version>1.6.1</version>
42                         <scope>compile</scope>
43                 </dependency>
44                 <dependency>
45                         <groupId>log4j</groupId>
46                         <artifactId>log4j</artifactId>
47                         <version>1.2.17</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>com.fasterxml.jackson.core</groupId>
51                         <artifactId>jackson-core</artifactId>
52                         <version>${fasterxml.jackson.version}</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>com.fasterxml.jackson.core</groupId>
56                         <artifactId>jackson-databind</artifactId>
57                         <version>${fasterxml.jackson.version}</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>junit</groupId>
61                         <artifactId>junit</artifactId>
62                         <version>${junit.version}</version>
63                         <scope>test</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.openecomp.sdnc.core</groupId>
67                         <artifactId>dblib-provider</artifactId>
68                         <version>${sdnctl.dblib.version}</version>
69                 </dependency>
70         </dependencies>
71         <build>
72                 <plugins>
73
74                         <!-- ================================================== -->
75                         <!-- Set the JDK compiler version. -->
76                         <!-- ================================================== -->
77                         <plugin>
78                                 <groupId>org.apache.maven.plugins</groupId>
79                                 <artifactId>maven-compiler-plugin</artifactId>
80                                 <version>2.5.1</version>
81                                 <inherited>true</inherited>
82                                 <configuration>
83                                         <source>1.7</source>
84                                         <target>1.7</target>
85                                 </configuration>
86                         </plugin>
87
88
89                         <plugin>
90                                 <artifactId>maven-assembly-plugin</artifactId>
91                                 <version>2.6</version>
92                                 <executions>
93                                         <execution>
94                                                 <id>create-zip</id>
95                                                 <goals>
96                                                         <goal>single</goal>
97                                                 </goals>
98                                                 <phase>package</phase>
99                                                 <configuration>
100                                                         <attach>true</attach>
101                                                         <finalName>${project.artifactId}.${project.version}</finalName>
102                                                         <attach>true</attach>
103                                                         <descriptors>
104                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
105                                                         </descriptors>
106                                                         <appendAssemblyId>false</appendAssemblyId>
107                                                 </configuration>
108                                         </execution>
109                                 </executions>
110                         </plugin>
111
112                 </plugins>
113         </build>
114
115 </project>