Revert package name changes
[dmaap/messagerouter/mirroragent.git] / pom.xml
1 <!--
2      ============LICENSE_START=======================================================
3      org.onap.dmaap
4      ================================================================================
5      Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6      ================================================================================
7      Licensed under the Apache License, Version 2.0 (the "License");
8      you may not use this file except in compliance with the License.
9      You may obtain a copy of the License at
10            http://www.apache.org/licenses/LICENSE-2.0
11      
12      Unless required by applicable law or agreed to in writing, software
13      distributed under the License is distributed on an "AS IS" BASIS,
14      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15      See the License for the specific language governing permissions and
16      limitations under the License.
17      ============LICENSE_END=========================================================
18    
19      ECOMP is a trademark and service mark of AT&T Intellectual Property.
20      
21  -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25
26         <groupId>org.onap.dmaap.messagerouter.mirroragent</groupId>
27         <artifactId>dmaapMMAgent</artifactId>
28         <version>1.0.0-SNAPSHOT</version>
29         <packaging>jar</packaging>
30         
31         <parent>
32                 <groupId>org.onap.oparent</groupId>
33                 <artifactId>oparent</artifactId>
34                 <version>1.0.0-SNAPSHOT</version>
35         </parent>
36
37         <name>dmaapMMAgent</name>
38         <description>Mirror Maker Agent - Repliaction agent</description>
39
40         <properties>
41                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42         </properties>
43         <licenses>
44                 <license>
45                         <name>Apache License Version 2.0</name>
46                 </license>
47         </licenses>
48         <developers>
49                 <developer>
50                         <name>Jackie</name>
51                         <email></email>
52                         <organization>ATT</organization>
53                         <organizationUrl>www.att.com</organizationUrl>
54                 </developer>
55         </developers>
56
57         <dependencies>
58                 <dependency>
59                         <groupId>junit</groupId>
60                         <artifactId>junit</artifactId>
61                         <version>3.8.1</version>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>com.google.code.gson</groupId>
66                         <artifactId>gson</artifactId>
67                         <version>2.6.2</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>log4j</groupId>
71                         <artifactId>log4j</artifactId>
72                         <version>1.2.17</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.jasypt</groupId>
76                         <artifactId>jasypt</artifactId>
77                         <version>1.9.2</version>
78                 </dependency>
79         </dependencies>
80         <build>
81                 <plugins>
82                         <plugin>
83                                 <groupId>org.apache.maven.plugins</groupId>
84                                 <artifactId>maven-javadoc-plugin</artifactId>
85                                 <version>2.10.4</version>
86                                 <configuration>
87                                         <additionalparam>-Xdoclint:none</additionalparam>
88                                 </configuration>
89                                 <executions>
90                                         <execution>
91                                                 <id>attach-javadocs</id>
92                                                 <goals>
93                                                         <goal>jar</goal>
94                                                 </goals>
95                                         </execution>
96                                 </executions>
97                         </plugin>
98                         <plugin>
99                                 <groupId>org.apache.maven.plugins</groupId>
100                                 <artifactId>maven-source-plugin</artifactId>
101                                 <version>3.0.0</version>
102                                 <executions>
103                                         <execution>
104                                                 <id>attach-sources</id>
105                                                 <goals>
106                                                         <goal>jar-no-fork</goal>
107                                                 </goals>
108                                         </execution>
109                                 </executions>
110                         </plugin>
111                         <plugin>
112                                 <groupId>org.codehaus.mojo</groupId>
113                                 <artifactId>cobertura-maven-plugin</artifactId>
114                                 <version>2.7</version>
115                                 <configuration>
116                                         <formats>
117                                                 <format>html</format>
118                                                 <format>xml</format>
119                                         </formats>
120                                 </configuration>
121                         </plugin>
122                         <plugin>
123                                 <artifactId>maven-assembly-plugin</artifactId>
124                                 <version>2.4</version>
125                                 <configuration>
126                                         <descriptorRefs>
127                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
128                                         </descriptorRefs>
129                                         <archive>
130
131                                                 <manifest>
132                                                         <addClasspath>true</addClasspath>
133                                                         <mainClass>com.att.nsa.dmaapMMAgent.MirrorMakerAgent</mainClass>
134                                                 </manifest>
135                                         </archive>
136                                 </configuration>
137
138                                 <executions>
139                                         <execution>
140                                                 <id>make-assembly</id> <!-- this is used for inheritance merges -->
141                                                 <phase>package</phase> <!-- bind to the packaging phase -->
142                                                 <goals>
143                                                         <goal>single</goal>
144                                                 </goals>
145                                         </execution>
146                                 </executions>
147                         </plugin>
148
149                 </plugins>
150         </build>
151 </project>