First part of onap rename
[appc.git] / appc-event-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/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <parent>
5                 <groupId>org.onap.appc</groupId>
6                 <artifactId>appc</artifactId>
7                 <version>1.3.0-SNAPSHOT</version>
8         </parent>
9
10         <artifactId>appc-event-listener</artifactId>
11         <name>Event Listener</name>
12         <description>Listener to read and write events from DMaaP (Cambria) or DMaaP.</description>
13         <packaging>pom</packaging>
14
15         <reporting>
16                 <plugins>
17                         <plugin>
18                                 <artifactId>maven-javadoc-plugin</artifactId>
19                                 <configuration>
20                                         <additionalDependencies>
21                                                 <additionalDependency>
22                                                         <groupId>org.slf4j</groupId>
23                                                         <artifactId>slf4j-api</artifactId>
24                                                         <version>${slf4j.version}</version>
25                                                 </additionalDependency>
26                                                 <additionalDependency>
27                                                         <groupId>org.antlr</groupId>
28                                                         <artifactId>antlr4</artifactId>
29                                                         <version>${antlr.version}</version>
30                                                 </additionalDependency>
31                                                 <additionalDependency>
32                                                         <groupId>org.antlr</groupId>
33                                                         <artifactId>antlr4-runtime</artifactId>
34                                                         <version>4.3</version>
35                                                 </additionalDependency>
36                                         </additionalDependencies>
37                                 </configuration>
38                                 <reportSets>
39                                         <reportSet>
40                                                 <reports>
41                                                         <report>javadoc-no-fork</report>
42                                                         <report>test-javadoc-no-fork</report>
43                                                 </reports>
44                                         </reportSet>
45                                         <reportSet>
46                                                 <id>aggregate</id>
47                                                 <reports>
48                                                         <report>aggregate</report>
49                                                         <report>test-aggregate</report>
50                                                 </reports>
51                                         </reportSet>
52                                 </reportSets>
53                         </plugin>
54                         <plugin>
55                                 <groupId>org.apache.maven.plugins</groupId>
56                                 <artifactId>maven-jxr-plugin</artifactId>
57                                 <version>2.3</version>
58                                 <reportSets>
59                                         <reportSet>
60                                                 <id>aggregate</id>
61                                                 <reports>
62                                                         <report>aggregate</report>
63                                                         <report>test-aggregate</report>
64                                                 </reports>
65                                         </reportSet>
66                                 </reportSets>
67                         </plugin>
68
69                         <plugin>
70                                 <artifactId>maven-surefire-plugin</artifactId>
71                         </plugin>
72                         
73                         <plugin>
74                                 <groupId>org.apache.maven.plugins</groupId>
75                                 <artifactId>maven-changelog-plugin</artifactId>
76                                 <version>2.3</version>
77                                 <reportSets>
78                                         <reportSet>
79                                                 <id>dual-report</id>
80                                                 <configuration>
81                                                         <type>range</type>
82                                                         <range>30</range>
83                                                 </configuration>
84                                                 <reports>
85                                                         <report>changelog</report>
86                                                         <report>file-activity</report>
87                                                 </reports>
88                                         </reportSet>
89                                 </reportSets>
90                         </plugin>
91                         
92                         <plugin>
93                                 <groupId>org.codehaus.mojo</groupId>
94                                 <artifactId>taglist-maven-plugin</artifactId>
95                                 <version>2.4</version>
96                         </plugin>
97                 </plugins>
98         </reporting>
99
100         <modules>
101                 <module>appc-event-listener-bundle</module>
102                 <module>appc-event-listener-features</module>
103                 <module>appc-event-listener-installer</module>
104         </modules>
105 </project>