blob: d7c3699d4f4a61545da0162b2c63d3aa061214d8 [file] [log] [blame]
Instrumentalac1e1ec2018-03-26 13:37:04 -07001<?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.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-log4j</artifactId>
33 <name>AAF Misc Log4J</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>
Sai Gandhame01703c2018-03-26 22:57:09 +000062 <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>
Instrumentalac1e1ec2018-03-26 13:37:04 -070070 </developers>
71
Sai Gandhame01703c2018-03-26 22:57:09 +000072 <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
Instrumentalac1e1ec2018-03-26 13:37:04 -070089 <dependencies>
90 <dependency>
91 <groupId>org.onap.aaf.misc</groupId>
92 <artifactId>aaf-misc-env</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95
96 <dependency>
97 <groupId>net.java.dev.jna</groupId>
98 <artifactId>jna-platform</artifactId>
99 <version>4.0.0</version>
100 </dependency>
101
102 </dependencies>
103
104 <build>
105 <pluginManagement>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-deploy-plugin</artifactId>
110 <version>2.6</version>
111 <configuration>
112 <skip>false</skip>
113 </configuration>
114 </plugin>
Sai Gandhame01703c2018-03-26 22:57:09 +0000115 <plugin>
116 <groupId>org.sonatype.plugins</groupId>
117 <artifactId>nexus-staging-maven-plugin</artifactId>
118 <version>1.6.7</version>
119 <extensions>true</extensions>
120 <configuration>
121 <nexusUrl>${nexusproxy}</nexusUrl>
122 <stagingProfileId>176c31dfe190a</stagingProfileId>
123 <serverId>ecomp-staging</serverId>
124 </configuration>
125 </plugin>
126 <plugin>
127 <groupId>org.jacoco</groupId>
128 <artifactId>jacoco-maven-plugin</artifactId>
129 <version>0.7.7.201606060606</version>
130 <configuration>
131 <dumpOnExit>true</dumpOnExit>
132 <includes>
133 <include>org.onap.aaf.*</include>
134 </includes>
135 </configuration>
136 <executions>
137 <execution>
138 <id>pre-unit-test</id>
139 <goals>
140 <goal>prepare-agent</goal>
141 </goals>
142 <configuration>
143 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
144 <!-- <append>true</append> -->
145 </configuration>
146 </execution>
147 <execution>
148 <id>pre-integration-test</id>
149 <phase>pre-integration-test</phase>
150 <goals>
151 <goal>prepare-agent</goal>
152 </goals>
153 <configuration>
154 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
155 <!-- <append>true</append> -->
156 </configuration>
157 </execution>
158 <execution>
159 <goals>
160 <goal>merge</goal>
161 </goals>
162 <phase>post-integration-test</phase>
163 <configuration>
164 <fileSets>
165 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
166 <directory>${project.build.directory}/coverage-reports</directory>
167 <includes>
168 <include>*.exec</include>
169 </includes>
170 </fileSet>
171 </fileSets>
172 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
173 </configuration>
174 </execution>
175 </executions>
176 </plugin>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700177 </plugins>
178 </pluginManagement>
179 </build>
180
Sai Gandhame01703c2018-03-26 22:57:09 +0000181 <distributionManagement>
182 <repository>
183 <id>ecomp-releases</id>
184 <name>AAF Release Repository</name>
185 <url>${nexusproxy}${releaseNexusPath}</url>
186 </repository>
187 <snapshotRepository>
188 <id>ecomp-snapshots</id>
189 <name>AAF Snapshot Repository</name>
190 <url>${nexusproxy}${snapshotNexusPath}</url>
191 </snapshotRepository>
192 <site>
193 <id>ecomp-site</id>
194 <url>dav:${nexusproxy}${sitePath}</url>
195 </site>
196 </distributionManagement>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700197</project>