Change groupID to match Garrit Project
[aaf/authz.git] / misc / rosetta / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  * ============LICENSE_START====================================================
4  * org.onap.aaf
5  * ===========================================================================
6  * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7  * ===========================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END====================================================
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         <parent>
25                 <groupId>org.onap.aaf.authz.misc</groupId>
26                 <artifactId>parent</artifactId>
27                 <version>1.3.0-SNAPSHOT</version>
28                 <relativePath>..</relativePath>
29         </parent>
30
31         <modelVersion>4.0.0</modelVersion>
32         <artifactId>aaf-misc-rosetta</artifactId>
33         <name>AAF Misc Rosetta</name>
34         <packaging>jar</packaging>
35
36         <developers>
37                 <developer>
38                         <name>Jonathan Gathman</name>
39                         <email>jonathan.gathman@att.com</email>
40                         <organization>ATT</organization>
41                         <roles>
42                                 <role>Architect</role>
43                                 <role>Lead Developer</role>
44                         </roles>
45                 </developer>
46                 <developer>
47                         <name>Gabe Maurer</name>
48                         <email>gabe.maurer@att.com</email>
49                         <organization>ATT</organization>
50                         <roles>
51                                 <role>Developer</role>
52                         </roles>
53                 </developer>
54                 <developer>
55                         <name>Ian Howell</name>
56                         <email>ian.howell@att.com</email>
57                         <organization>ATT</organization>
58                         <roles>
59                                 <role>Developer</role>
60                         </roles>
61                 </developer>
62                 <developer>
63                         <name>Sai Gandham</name>
64                         <email>sai.gandham@att.com</email>
65                         <organization>ATT</organization>
66                         <roles>
67                                 <role>Developer</role>
68                         </roles>
69                 </developer>
70         </developers>
71
72         <properties>
73                 <!--  SONAR  -->
74                  <jacoco.version>0.7.7.201606060606</jacoco.version>
75             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
76             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
77             <!-- Default Sonar configuration -->
78             <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
79             <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
80             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
81             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
82                 <nexusproxy>https://nexus.onap.org</nexusproxy>
83                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
84                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
85                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
86                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
87         </properties>
88         
89         <dependencies>
90                 <dependency>
91                         <groupId>org.onap.aaf.authz.misc</groupId>
92                         <artifactId>aaf-misc-env</artifactId>
93                         <version>${project.version}</version>
94                 </dependency>
95         </dependencies>
96
97         <build>
98                 <plugins>
99                         <plugin>
100                                 <groupId>org.jvnet.jaxb2.maven2</groupId>
101                                 <artifactId>maven-jaxb2-plugin</artifactId>
102                                 <version>0.8.2</version>
103                                 <executions>
104                                         <execution>
105                                                 <goals>
106                                                         <goal>generate</goal>
107                                                 </goals>
108                                         </execution>
109                                 </executions>
110                                 <configuration>
111                                         <schemaDirectory>src/main/xsd</schemaDirectory>
112                                 </configuration>
113                         </plugin>
114                         <plugin>
115                                 <groupId>org.sonatype.plugins</groupId>
116                                 <artifactId>nexus-staging-maven-plugin</artifactId>
117                                 <version>1.6.7</version>
118                                 <extensions>true</extensions>
119                                 <configuration>
120                                         <nexusUrl>${nexusproxy}</nexusUrl>
121                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
122                                         <serverId>ecomp-staging</serverId>
123                                 </configuration>
124                         </plugin>               
125                         <plugin>
126                                 <groupId>org.jacoco</groupId>
127                                 <artifactId>jacoco-maven-plugin</artifactId>
128                                 <version>0.7.7.201606060606</version>
129                                 <configuration>
130                                         <dumpOnExit>true</dumpOnExit>
131                                         <includes>
132                                                 <include>org.onap.aaf.*</include>
133                                         </includes>
134                                 </configuration>
135                                 <executions>
136                                         <execution>
137                                                 <id>pre-unit-test</id>
138                                                 <goals>
139                                                         <goal>prepare-agent</goal>
140                                                 </goals>
141                                                 <configuration>
142                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
143                                                         <!-- <append>true</append> -->
144                                                 </configuration>
145                                         </execution>
146                                         <execution>
147                                                 <id>pre-integration-test</id>
148                                                 <phase>pre-integration-test</phase>
149                                                 <goals>
150                                                         <goal>prepare-agent</goal>
151                                                 </goals>
152                                                 <configuration>
153                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
154                                                         <!-- <append>true</append> -->
155                                                 </configuration>
156                                         </execution>
157                                         <execution>
158                         <goals>
159                             <goal>merge</goal>
160                         </goals>
161                         <phase>post-integration-test</phase>
162                         <configuration>
163                             <fileSets>
164                                 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
165                                     <directory>${project.build.directory}/coverage-reports</directory>
166                                     <includes>
167                                         <include>*.exec</include>
168                                     </includes>
169                                 </fileSet>
170                             </fileSets>
171                             <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
172                         </configuration>
173                     </execution>
174                                 </executions>
175                         </plugin>
176                 </plugins>
177
178         </build>
179
180         <distributionManagement>
181                 <repository>
182                         <id>ecomp-releases</id>
183                         <name>AAF Release Repository</name>
184                         <url>${nexusproxy}${releaseNexusPath}</url>
185                 </repository>
186                 <snapshotRepository>
187                         <id>ecomp-snapshots</id>
188                         <name>AAF Snapshot Repository</name>
189                         <url>${nexusproxy}${snapshotNexusPath}</url>
190                 </snapshotRepository>
191                 <site>
192                         <id>ecomp-site</id>
193                         <url>dav:${nexusproxy}${sitePath}</url>
194                 </site>
195         </distributionManagement>
196         
197 </project>