ADD Initial Code Import
[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         <url>https://github.com/att/dmaap-framework</url>
40
41         <properties>
42                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43         </properties>
44         <licenses>
45                 <license>
46                         <name>Apache License Version 2.0</name>
47                 </license>
48         </licenses>
49         <developers>
50                 <developer>
51                         <name>Jackie</name>
52                         <email></email>
53                         <organization>ATT</organization>
54                         <organizationUrl>www.att.com</organizationUrl>
55                 </developer>
56         </developers>
57
58         <dependencies>
59                 <dependency>
60                         <groupId>junit</groupId>
61                         <artifactId>junit</artifactId>
62                         <version>3.8.1</version>
63                         <scope>test</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>com.google.code.gson</groupId>
67                         <artifactId>gson</artifactId>
68                         <version>2.6.2</version>
69                 </dependency>
70                 <dependency>
71                         <groupId>log4j</groupId>
72                         <artifactId>log4j</artifactId>
73                         <version>1.2.17</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.jasypt</groupId>
77                         <artifactId>jasypt</artifactId>
78                         <version>1.9.2</version>
79                 </dependency>
80         </dependencies>
81         <build>
82                 <plugins>
83                         <plugin>
84                                 <groupId>org.apache.maven.plugins</groupId>
85                                 <artifactId>maven-javadoc-plugin</artifactId>
86                                 <version>2.10.4</version>
87                                 <configuration>
88                                         <additionalparam>-Xdoclint:none</additionalparam>
89                                 </configuration>
90                                 <executions>
91                                         <execution>
92                                                 <id>attach-javadocs</id>
93                                                 <goals>
94                                                         <goal>jar</goal>
95                                                 </goals>
96                                         </execution>
97                                 </executions>
98                         </plugin>
99                         <plugin>
100                                 <groupId>org.apache.maven.plugins</groupId>
101                                 <artifactId>maven-source-plugin</artifactId>
102                                 <version>3.0.0</version>
103                                 <executions>
104                                         <execution>
105                                                 <id>attach-sources</id>
106                                                 <goals>
107                                                         <goal>jar-no-fork</goal>
108                                                 </goals>
109                                         </execution>
110                                 </executions>
111                         </plugin>
112                         <plugin>
113                                 <groupId>org.codehaus.mojo</groupId>
114                                 <artifactId>cobertura-maven-plugin</artifactId>
115                                 <version>2.7</version>
116                                 <configuration>
117                                         <formats>
118                                                 <format>html</format>
119                                                 <format>xml</format>
120                                         </formats>
121                                 </configuration>
122                         </plugin>
123                         <plugin>
124                                 <artifactId>maven-assembly-plugin</artifactId>
125                                 <version>2.4</version>
126                                 <configuration>
127                                         <descriptorRefs>
128                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
129                                         </descriptorRefs>
130                                         <archive>
131
132                                                 <manifest>
133                                                         <addClasspath>true</addClasspath>
134                                                         <mainClass>org.onap.dmaap.messagerouter.mirroragent.nsa.dmaapMMAgent.MirrorMakerAgent</mainClass>
135                                                 </manifest>
136                                         </archive>
137                                 </configuration>
138
139                                 <executions>
140                                         <execution>
141                                                 <id>make-assembly</id> <!-- this is used for inheritance merges -->
142                                                 <phase>package</phase> <!-- bind to the packaging phase -->
143                                                 <goals>
144                                                         <goal>single</goal>
145                                                 </goals>
146                                         </execution>
147                                 </executions>
148                         </plugin>
149                         <plugin> 
150                                  <groupId>org.apache.maven.plugins</groupId> 
151                                  <artifactId>maven-gpg-plugin</artifactId> 
152                                      <version>1.5</version> 
153                                      <executions> 
154                                              <execution> 
155                                                      <id>sign-artifacts</id> 
156                                                      <phase>verify</phase> 
157                                                      <goals> 
158                                                         <goal>sign</goal> 
159                                                      </goals> 
160                                           </execution> 
161                                         </executions> 
162                    </plugin>
163
164                 </plugins>
165         </build>
166 </project>