Release appc
[appc.git] / appc-adapters / appc-dmaap-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <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/maven-v4_0_0.xsd">
23         <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.appc.parent</groupId>
26                 <artifactId>odlparent-lite</artifactId>
27                 <version>2.6.1</version>
28                 <relativePath />
29         </parent>
30         <groupId>org.onap.appc</groupId>
31         <artifactId>appc-dmaap-adapter</artifactId>
32         <name>DMaaP Adapter</name>
33         <description>Adapter to read and write messages on the DMaaP Service</description>
34         <packaging>pom</packaging>
35
36         <reporting>
37                 <plugins>
38                         <plugin>
39                                 <artifactId>maven-javadoc-plugin</artifactId>
40                                 <configuration>
41                                         <additionalDependencies>
42                                                 <additionalDependency>
43                                                         <groupId>org.slf4j</groupId>
44                                                         <artifactId>slf4j-api</artifactId>
45                                                         <version>${slf4j.version}</version>
46                                                 </additionalDependency>
47                                                 <additionalDependency>
48                                                         <groupId>org.antlr</groupId>
49                                                         <artifactId>antlr4</artifactId>
50                                                         <version>${antlr.version}</version>
51                                                 </additionalDependency>
52                                                 <additionalDependency>
53                                                         <groupId>org.antlr</groupId>
54                                                         <artifactId>antlr4-runtime</artifactId>
55                                                         <version>4.3</version>
56                                                 </additionalDependency>
57                                         </additionalDependencies>
58                                 </configuration>
59                                 <reportSets>
60                                         <reportSet>
61                                                 <reports>
62                                                         <report>javadoc-no-fork</report>
63                                                         <report>test-javadoc-no-fork</report>
64                                                 </reports>
65                                         </reportSet>
66                                         <reportSet>
67                                                 <id>aggregate</id>
68                                                 <reports>
69                                                         <report>aggregate</report>
70                                                         <report>test-aggregate</report>
71                                                 </reports>
72                                         </reportSet>
73                                 </reportSets>
74                         </plugin>
75                         <plugin>
76                                 <groupId>org.apache.maven.plugins</groupId>
77                                 <artifactId>maven-jxr-plugin</artifactId>
78                                 <version>2.3</version>
79                                 <reportSets>
80                                         <reportSet>
81                                                 <id>aggregate</id>
82                                                 <reports>
83                                                         <report>aggregate</report>
84                                                         <report>test-aggregate</report>
85                                                 </reports>
86                                         </reportSet>
87                                 </reportSets>
88                         </plugin>
89
90                         <plugin>
91                                 <artifactId>maven-surefire-plugin</artifactId>
92                         </plugin>
93                         
94                         <plugin>
95                                 <groupId>org.apache.maven.plugins</groupId>
96                                 <artifactId>maven-changelog-plugin</artifactId>
97                                 <version>2.3</version>
98                                 <reportSets>
99                                         <reportSet>
100                                                 <id>dual-report</id>
101                                                 <configuration>
102                                                         <type>range</type>
103                                                         <range>30</range>
104                                                 </configuration>
105                                                 <reports>
106                                                         <report>changelog</report>
107                                                         <report>file-activity</report>
108                                                 </reports>
109                                         </reportSet>
110                                 </reportSets>
111                         </plugin>
112                         
113                         <plugin>
114                                 <groupId>org.codehaus.mojo</groupId>
115                                 <artifactId>taglist-maven-plugin</artifactId>
116                                 <version>2.4</version>
117                         </plugin>
118                 </plugins>
119         </reporting>
120
121         <modules>
122                 <module>appc-message-adapter-api</module>
123                 <module>appc-dmaap-adapter-bundle</module>
124                 <module>appc-dmaap-adapter-features</module>
125                 <module>appc-dmaap-adapter-installer</module>
126                 <module>appc-message-adapter-factory</module>
127         </modules>
128         <version>1.6.3</version>
129 </project>