blob: fd7f950003000d5c7ca386f529761c130d6a6ff3 [file] [log] [blame]
sg481n37e47102017-08-03 17:44:44 -04001<!--
2 ============LICENSE_START====================================================
sg481na1dc4962017-08-09 23:35:37 -04003 * org.onap.aaf
sg481n37e47102017-08-03 17:44:44 -04004 * ===========================================================================
5 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
sg481n37e47102017-08-03 17:44:44 -04006 * ===========================================================================
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 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END====================================================
19 *
20 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 *
22-->
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25<parent>
sg481nbfc98882017-08-24 00:58:40 -040026 <groupId>org.onap.aaf.inno</groupId>
sg481n37e47102017-08-03 17:44:44 -040027 <artifactId>parent</artifactId>
sg481nd1492132017-08-10 17:53:22 -040028 <version>1.0.0-SNAPSHOT</version>
sg481n37e47102017-08-03 17:44:44 -040029 <relativePath>..</relativePath>
30 </parent>
31
32 <name>Log4J Elements</name>
33 <artifactId>log4j</artifactId>
34 <packaging>jar</packaging>
35 <modelVersion>4.0.0</modelVersion>
36 <url>https://github.com/att/AAF</url>
37 <description>INNO</description>
38 <licenses>
39 <license>
40 <name>BSD License</name>
41 <url> </url>
42 </license>
43 </licenses>
44
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
sg481na821bc92017-08-16 17:34:08 -040053<properties>
54 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
55 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481nb826b442017-09-08 12:26:03 -040056 <sonar.language>java</sonar.language>
57 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
58 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
59 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
60 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
61 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
62 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481na821bc92017-08-16 17:34:08 -040063 <nexusproxy>https://nexus.onap.org</nexusproxy>
64 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
65 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
66 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na3d1ba12017-09-23 02:43:25 +000067 <sitePath>/content/sites/site/org/onap/aaf/inno/${project.artifactId}/${project.version}</sitePath>
sg481na821bc92017-08-16 17:34:08 -040068 </properties>
sg481n37e47102017-08-03 17:44:44 -040069 <dependencies>
70 <dependency>
sg481nbfc98882017-08-24 00:58:40 -040071 <groupId>org.onap.aaf.inno</groupId>
sg481n37e47102017-08-03 17:44:44 -040072 <artifactId>env</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75
76 <dependency>
77 <groupId>net.java.dev.jna</groupId>
78 <artifactId>jna-platform</artifactId>
79 <version>4.0.0</version>
80 </dependency>
81
82 </dependencies>
83
sg481n37e47102017-08-03 17:44:44 -040084
sg481n37e47102017-08-03 17:44:44 -040085
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-deploy-plugin</artifactId>
91 <version>2.6</version>
92 <configuration>
93 <skip>false</skip>
94 </configuration>
95 </plugin>
sg481n37e47102017-08-03 17:44:44 -040096 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-source-plugin</artifactId>
99 <version>2.2.1</version>
100 <executions>
101 <execution>
102 <id>attach-sources</id>
103 <goals>
104 <goal>jar-no-fork</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400109 <plugin>
sg481n37e47102017-08-03 17:44:44 -0400110 <groupId>org.sonatype.plugins</groupId>
111 <artifactId>nexus-staging-maven-plugin</artifactId>
112 <version>1.6.7</version>
113 <extensions>true</extensions>
114 <configuration>
sg481na821bc92017-08-16 17:34:08 -0400115 <nexusUrl>${nexusproxy}</nexusUrl>
sg481neecd3032017-08-17 17:52:20 -0400116 <stagingProfileId>176c31dfe190a</stagingProfileId>
sg481na821bc92017-08-16 17:34:08 -0400117 <serverId>ecomp-staging</serverId>
sg481n37e47102017-08-03 17:44:44 -0400118 </configuration>
sg481nb826b442017-09-08 12:26:03 -0400119 </plugin>
120 <plugin>
121 <groupId>org.jacoco</groupId>
122 <artifactId>jacoco-maven-plugin</artifactId>
123 <version>0.7.7.201606060606</version>
124 <configuration>
125 <dumpOnExit>true</dumpOnExit>
126 <includes>
127 <include>org.onap.aaf.*</include>
128 </includes>
129 </configuration>
130 <executions>
131 <execution>
132 <id>pre-unit-test</id>
133 <goals>
134 <goal>prepare-agent</goal>
135 </goals>
136 <configuration>
137 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
138 <!-- <append>true</append> -->
139 </configuration>
140 </execution>
141 <execution>
142 <id>pre-integration-test</id>
143 <phase>pre-integration-test</phase>
144 <goals>
145 <goal>prepare-agent</goal>
146 </goals>
147 <configuration>
148 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
149 <!-- <append>true</append> -->
150 </configuration>
151 </execution>
152 <execution>
153 <goals>
154 <goal>merge</goal>
155 </goals>
156 <phase>post-integration-test</phase>
157 <configuration>
158 <fileSets>
159 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
160 <directory>${project.build.directory}/coverage-reports</directory>
161 <includes>
162 <include>*.exec</include>
163 </includes>
164 </fileSet>
165 </fileSets>
166 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
167 </configuration>
168 </execution>
169 </executions>
sg481n37e47102017-08-03 17:44:44 -0400170 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400171
sg481n37e47102017-08-03 17:44:44 -0400172 </plugins>
173 </build>
sg481na821bc92017-08-16 17:34:08 -0400174 <distributionManagement>
175 <repository>
176 <id>ecomp-releases</id>
177 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400178 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400179 </repository>
180 <snapshotRepository>
181 <id>ecomp-snapshots</id>
182 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400183 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400184 </snapshotRepository>
sg481n1a5c4932017-08-17 18:44:28 -0400185 <site>
186 <id>ecomp-site</id>
187 <url>dav:${nexusproxy}${sitePath}</url>
188 </site>
sg481na821bc92017-08-16 17:34:08 -0400189 </distributionManagement>
sg481n37e47102017-08-03 17:44:44 -0400190
191</project>