blob: ffd449b4d2d58de7d95ff24c066cf4859178d2b1 [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>
sg481n0d2660c2017-10-04 16:50:12 +000057 <sonar.skip>true</sonar.skip>
sg481nb826b442017-09-08 12:26:03 -040058 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
59 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
60 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
61 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
62 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
63 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481na821bc92017-08-16 17:34:08 -040064 <nexusproxy>https://nexus.onap.org</nexusproxy>
65 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
66 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
67 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na3d1ba12017-09-23 02:43:25 +000068 <sitePath>/content/sites/site/org/onap/aaf/inno/${project.artifactId}/${project.version}</sitePath>
sg481na821bc92017-08-16 17:34:08 -040069 </properties>
sg481n37e47102017-08-03 17:44:44 -040070 <dependencies>
71 <dependency>
sg481nbfc98882017-08-24 00:58:40 -040072 <groupId>org.onap.aaf.inno</groupId>
sg481n37e47102017-08-03 17:44:44 -040073 <artifactId>env</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76
77 <dependency>
78 <groupId>net.java.dev.jna</groupId>
79 <artifactId>jna-platform</artifactId>
80 <version>4.0.0</version>
81 </dependency>
82
83 </dependencies>
84
sg481n37e47102017-08-03 17:44:44 -040085
sg481n37e47102017-08-03 17:44:44 -040086
87 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-deploy-plugin</artifactId>
92 <version>2.6</version>
93 <configuration>
94 <skip>false</skip>
95 </configuration>
96 </plugin>
sg481n37e47102017-08-03 17:44:44 -040097 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-source-plugin</artifactId>
100 <version>2.2.1</version>
101 <executions>
102 <execution>
103 <id>attach-sources</id>
104 <goals>
105 <goal>jar-no-fork</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400110 <plugin>
sg481n37e47102017-08-03 17:44:44 -0400111 <groupId>org.sonatype.plugins</groupId>
112 <artifactId>nexus-staging-maven-plugin</artifactId>
113 <version>1.6.7</version>
114 <extensions>true</extensions>
115 <configuration>
sg481na821bc92017-08-16 17:34:08 -0400116 <nexusUrl>${nexusproxy}</nexusUrl>
sg481neecd3032017-08-17 17:52:20 -0400117 <stagingProfileId>176c31dfe190a</stagingProfileId>
sg481na821bc92017-08-16 17:34:08 -0400118 <serverId>ecomp-staging</serverId>
sg481n37e47102017-08-03 17:44:44 -0400119 </configuration>
sg481nb826b442017-09-08 12:26:03 -0400120 </plugin>
121 <plugin>
122 <groupId>org.jacoco</groupId>
123 <artifactId>jacoco-maven-plugin</artifactId>
124 <version>0.7.7.201606060606</version>
125 <configuration>
126 <dumpOnExit>true</dumpOnExit>
127 <includes>
128 <include>org.onap.aaf.*</include>
129 </includes>
130 </configuration>
131 <executions>
132 <execution>
133 <id>pre-unit-test</id>
134 <goals>
135 <goal>prepare-agent</goal>
136 </goals>
137 <configuration>
138 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
139 <!-- <append>true</append> -->
140 </configuration>
141 </execution>
142 <execution>
143 <id>pre-integration-test</id>
144 <phase>pre-integration-test</phase>
145 <goals>
146 <goal>prepare-agent</goal>
147 </goals>
148 <configuration>
149 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
150 <!-- <append>true</append> -->
151 </configuration>
152 </execution>
153 <execution>
154 <goals>
155 <goal>merge</goal>
156 </goals>
157 <phase>post-integration-test</phase>
158 <configuration>
159 <fileSets>
160 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
161 <directory>${project.build.directory}/coverage-reports</directory>
162 <includes>
163 <include>*.exec</include>
164 </includes>
165 </fileSet>
166 </fileSets>
167 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
168 </configuration>
169 </execution>
170 </executions>
sg481n37e47102017-08-03 17:44:44 -0400171 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400172
sg481n37e47102017-08-03 17:44:44 -0400173 </plugins>
174 </build>
sg481na821bc92017-08-16 17:34:08 -0400175 <distributionManagement>
176 <repository>
177 <id>ecomp-releases</id>
178 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400179 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400180 </repository>
181 <snapshotRepository>
182 <id>ecomp-snapshots</id>
183 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400184 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400185 </snapshotRepository>
sg481n1a5c4932017-08-17 18:44:28 -0400186 <site>
187 <id>ecomp-site</id>
188 <url>dav:${nexusproxy}${sitePath}</url>
189 </site>
sg481na821bc92017-08-16 17:34:08 -0400190 </distributionManagement>
sg481n37e47102017-08-03 17:44:44 -0400191
192</project>