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