c4c6656a73d9c28de4ce3e4e8e3e719c89bdb20c
[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>com.fasterxml.jackson.core</groupId>
61                         <artifactId>jackson-annotations</artifactId>
62                         <version>${fasterxml.jackson.version}</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>junit</groupId>
66                         <artifactId>junit</artifactId>
67                         <version>${junit.version}</version>
68                         <scope>test</scope>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.openecomp.sdnc.core</groupId>
72                         <artifactId>dblib-provider</artifactId>
73                         <version>${sdnctl.dblib.version}</version>
74                 </dependency>
75         </dependencies>
76         <build>
77                 <plugins>
78
79                         <!-- ================================================== -->
80                         <!-- Set the JDK compiler version. -->
81                         <!-- ================================================== -->
82                         <plugin>
83                                 <groupId>org.apache.maven.plugins</groupId>
84                                 <artifactId>maven-compiler-plugin</artifactId>
85                                 <version>2.5.1</version>
86                                 <inherited>true</inherited>
87                                 <configuration>
88                                         <source>1.7</source>
89                                         <target>1.7</target>
90                                 </configuration>
91                         </plugin>
92
93
94                         <plugin>
95                                 <artifactId>maven-assembly-plugin</artifactId>
96                                 <version>2.6</version>
97                                 <executions>
98                                         <execution>
99                                                 <id>create-zip</id>
100                                                 <goals>
101                                                         <goal>single</goal>
102                                                 </goals>
103                                                 <phase>package</phase>
104                                                 <configuration>
105                                                         <attach>true</attach>
106                                                         <finalName>${project.artifactId}.${project.version}</finalName>
107                                                         <attach>true</attach>
108                                                         <descriptors>
109                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
110                                                         </descriptors>
111                                                         <appendAssemblyId>false</appendAssemblyId>
112                                                 </configuration>
113                                         </execution>
114                                 </executions>
115                         </plugin>
116
117                 </plugins>
118         </build>
119
120 </project>