blob: f7ad1a70a7c414cd72c1770779e3d7e82802db22 [file] [log] [blame]
IanHowell3901cf82018-04-03 11:24:27 -05001<!-- * ============LICENSE_START====================================================
2 * org.onap.aaf * ===========================================================================
3 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. * ===========================================================================
4 * Licensed under the Apache License, Version 2.0 (the "License"); * you may
5 not use this file except in compliance with the License. * You may obtain
6 a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *
7 * Unless required by applicable law or agreed to in writing, software * distributed
8 under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES
9 OR CONDITIONS OF ANY KIND, either express or implied. * See the License for
10 the specific language governing permissions and * limitations under the License.
11 * ============LICENSE_END====================================================
Instrumentala20accc2018-03-26 13:49:56 -070012 * -->
13<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15 <parent>
Sai Gandham83fc0252018-04-09 16:28:48 +000016 <groupId>org.onap.aaf.authz</groupId>
17 <artifactId>cadiparent</artifactId>
Sai Gandham16815922018-04-08 19:52:24 +000018 <relativePath>..</relativePath>
Instrumental12fbeae2018-10-01 21:18:42 -050019 <version>2.1.2-SNAPSHOT</version>
Instrumentala20accc2018-03-26 13:49:56 -070020 </parent>
21
22 <modelVersion>4.0.0</modelVersion>
23 <name>AAF CADI Core Framework</name>
24 <artifactId>aaf-cadi-core</artifactId>
25 <packaging>jar</packaging>
26
Sai Gandhamc434f3c2018-03-27 16:29:24 +000027 <properties>
28 <!-- SONAR -->
Instrumental17ca7442018-03-29 16:54:19 -050029 <jacoco.version>0.7.7.201606060606</jacoco.version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000030 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
31 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
32 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050033 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
34 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000035 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
36 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
37 <nexusproxy>https://nexus.onap.org</nexusproxy>
38 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
39 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
40 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000041 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000042 </properties>
IanHowell3901cf82018-04-03 11:24:27 -050043
Instrumentala20accc2018-03-26 13:49:56 -070044 <developers>
45 <developer>
46 <name>Jonathan Gathman</name>
47 <email>jonathan.gathman@att.com</email>
48 <organization>ATT</organization>
49 <roles>
50 <role>Architect</role>
51 <role>Lead Developer</role>
52 </roles>
53 </developer>
54 <developer>
55 <name>Gabe Maurer</name>
56 <email>gabe.maurer@att.com</email>
57 <organization>ATT</organization>
58 <roles>
59 <role>Developer</role>
60 </roles>
61 </developer>
62 <developer>
63 <name>Ian Howell</name>
64 <email>ian.howell@att.com</email>
65 <organization>ATT</organization>
66 <roles>
67 <role>Developer</role>
68 </roles>
69 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000070 <developer>
71 <name>Sai Gandham</name>
72 <email>sai.gandham@att.com</email>
73 <organization>ATT</organization>
74 <roles>
75 <role>Developer</role>
76 </roles>
77 </developer>
Instrumentala20accc2018-03-26 13:49:56 -070078 </developers>
79 <dependencies>
80 <dependency>
81 <groupId>javax.servlet</groupId>
Instrumental924b18d2018-04-05 20:17:18 -050082 <artifactId>javax.servlet-api</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -070083 <scope>provided</scope>
84 </dependency>
85 </dependencies>
86 <build>
87 <plugins>
88 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -050089 <!-- Must put this in to turn on Signing, but Configuration itself is
Instrumentala20accc2018-03-26 13:49:56 -070090 in Parent -->
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-jarsigner-plugin</artifactId>
Sai Gandham6034c492018-03-27 17:29:56 +000093 <version>1.4</version>
Instrumentala20accc2018-03-26 13:49:56 -070094 </plugin>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-jar-plugin</artifactId>
98 <configuration>
99 <archive>
100 <manifest>
101 <mainClass>org.onap.aaf.cadi.CmdLine</mainClass>
102 </manifest>
103 <manifestEntries>
104 <Sealed>true</Sealed>
105 </manifestEntries>
106 </archive>
107 </configuration>
108 <executions>
109 <execution>
110 <id>test-jar</id>
111 <phase>package</phase>
112 <goals>
113 <goal>test-jar</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
Instrumental17ca7442018-03-29 16:54:19 -0500118 <plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000119 <groupId>org.sonatype.plugins</groupId>
120 <artifactId>nexus-staging-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000121 <extensions>true</extensions>
122 <configuration>
123 <nexusUrl>${nexusproxy}</nexusUrl>
124 <stagingProfileId>176c31dfe190a</stagingProfileId>
125 <serverId>ecomp-staging</serverId>
126 </configuration>
IanHowell3901cf82018-04-03 11:24:27 -0500127 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000128 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500129 <groupId>org.jacoco</groupId>
130 <artifactId>jacoco-maven-plugin</artifactId>
IanHowell3901cf82018-04-03 11:24:27 -0500131 <configuration>
132 <excludes>
133 <exclude>**/gen/**</exclude>
134 <exclude>**/generated-sources/**</exclude>
135 <exclude>**/yang-gen/**</exclude>
136 <exclude>**/pax/**</exclude>
137 </excludes>
138 </configuration>
139 <executions>
140 <execution>
141 <id>pre-unit-test</id>
142 <goals>
143 <goal>prepare-agent</goal>
144 </goals>
145 <configuration>
146 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
147 <propertyName>surefireArgLine</propertyName>
148 </configuration>
149 </execution>
150 <execution>
151 <id>post-unit-test</id>
152 <phase>test</phase>
153 <goals>
154 <goal>report</goal>
155 </goals>
156 <configuration>
157 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
158 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
159 </configuration>
160 </execution>
161 <execution>
162 <id>pre-integration-test</id>
163 <phase>pre-integration-test</phase>
164 <goals>
165 <goal>prepare-agent</goal>
166 </goals>
167 <configuration>
168 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
169 <propertyName>failsafeArgLine</propertyName>
170 </configuration>
171 </execution>
172 <execution>
173 <id>post-integration-test</id>
174 <phase>post-integration-test</phase>
175 <goals>
176 <goal>report</goal>
177 </goals>
178 <configuration>
179 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
180 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
181 </configuration>
182 </execution>
183 </executions>
184 </plugin>
Instrumentala20accc2018-03-26 13:49:56 -0700185 </plugins>
186 </build>
187
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000188 <distributionManagement>
189 <repository>
190 <id>ecomp-releases</id>
191 <name>AAF Release Repository</name>
192 <url>${nexusproxy}${releaseNexusPath}</url>
193 </repository>
194 <snapshotRepository>
195 <id>ecomp-snapshots</id>
196 <name>AAF Snapshot Repository</name>
197 <url>${nexusproxy}${snapshotNexusPath}</url>
198 </snapshotRepository>
199 <site>
200 <id>ecomp-site</id>
201 <url>dav:${nexusproxy}${sitePath}</url>
202 </site>
203 </distributionManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700204</project>