blob: b3cab9beb1a311a91756693be1ba8942f84fbebb [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungf6332bd2018-06-13 13:07:38 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 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=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080022<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>
Patrick Brady07567592017-12-13 11:09:30 -080025 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080026 <artifactId>appc-adapters</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080028 </parent>
29
30 <artifactId>appc-dmaap-adapter</artifactId>
31 <name>DMaaP Adapter</name>
Patrick Bradyc7d00752017-06-01 10:45:37 -070032 <description>Adapter to read and write messages on the DMaaP Service</description>
Patrick Brady57b5eef2017-02-10 15:00:49 -080033 <packaging>pom</packaging>
34
35 <reporting>
36 <plugins>
37 <plugin>
38 <artifactId>maven-javadoc-plugin</artifactId>
39 <configuration>
40 <additionalDependencies>
41 <additionalDependency>
42 <groupId>org.slf4j</groupId>
43 <artifactId>slf4j-api</artifactId>
44 <version>${slf4j.version}</version>
45 </additionalDependency>
46 <additionalDependency>
47 <groupId>org.antlr</groupId>
48 <artifactId>antlr4</artifactId>
49 <version>${antlr.version}</version>
50 </additionalDependency>
51 <additionalDependency>
52 <groupId>org.antlr</groupId>
53 <artifactId>antlr4-runtime</artifactId>
54 <version>4.3</version>
55 </additionalDependency>
56 </additionalDependencies>
57 </configuration>
58 <reportSets>
59 <reportSet>
60 <reports>
61 <report>javadoc-no-fork</report>
62 <report>test-javadoc-no-fork</report>
63 </reports>
64 </reportSet>
65 <reportSet>
66 <id>aggregate</id>
67 <reports>
68 <report>aggregate</report>
69 <report>test-aggregate</report>
70 </reports>
71 </reportSet>
72 </reportSets>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-jxr-plugin</artifactId>
77 <version>2.3</version>
78 <reportSets>
79 <reportSet>
80 <id>aggregate</id>
81 <reports>
82 <report>aggregate</report>
83 <report>test-aggregate</report>
84 </reports>
85 </reportSet>
86 </reportSets>
87 </plugin>
88
89 <plugin>
90 <artifactId>maven-surefire-plugin</artifactId>
91 </plugin>
92
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-changelog-plugin</artifactId>
96 <version>2.3</version>
97 <reportSets>
98 <reportSet>
99 <id>dual-report</id>
100 <configuration>
101 <type>range</type>
102 <range>30</range>
103 </configuration>
104 <reports>
105 <report>changelog</report>
106 <report>file-activity</report>
107 </reports>
108 </reportSet>
109 </reportSets>
110 </plugin>
111
112 <plugin>
113 <groupId>org.codehaus.mojo</groupId>
114 <artifactId>taglist-maven-plugin</artifactId>
115 <version>2.4</version>
116 </plugin>
117 </plugins>
118 </reporting>
119
120 <modules>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700121 <module>appc-message-adapter-api</module>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800122 <module>appc-dmaap-adapter-bundle</module>
123 <module>appc-dmaap-adapter-features</module>
124 <module>appc-dmaap-adapter-installer</module>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700125 <module>appc-message-adapter-factory</module>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800126 </modules>
127</project>