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