sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 1 | <!--
|
| 2 | ============LICENSE_START====================================================
|
sg481n | a1dc496 | 2017-08-09 23:35:37 -0400 | [diff] [blame] | 3 | * org.onap.aaf
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 4 | * ===========================================================================
|
| 5 | * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 6 | * ===========================================================================
|
| 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>
|
sg481n | bfc9888 | 2017-08-24 00:58:40 -0400 | [diff] [blame] | 26 | <groupId>org.onap.aaf.inno</groupId>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 27 | <artifactId>parent</artifactId>
|
sg481n | d149213 | 2017-08-10 17:53:22 -0400 | [diff] [blame] | 28 | <version>1.0.0-SNAPSHOT</version>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 29 | <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>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 53 | <properties>
|
| 54 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 55 | <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
|
sg481n | b826b44 | 2017-09-08 12:26:03 -0400 | [diff] [blame] | 56 | <sonar.language>java</sonar.language>
|
sg481n | 0d2660c | 2017-10-04 16:50:12 +0000 | [diff] [blame^] | 57 | <sonar.skip>true</sonar.skip>
|
sg481n | b826b44 | 2017-09-08 12:26:03 -0400 | [diff] [blame] | 58 | <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>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 64 | <nexusproxy>https://nexus.onap.org</nexusproxy>
|
| 65 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
|
| 66 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
|
| 67 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
|
sg481n | a3d1ba1 | 2017-09-23 02:43:25 +0000 | [diff] [blame] | 68 | <sitePath>/content/sites/site/org/onap/aaf/inno/${project.artifactId}/${project.version}</sitePath>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 69 | </properties>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 70 | <dependencies>
|
| 71 | <dependency>
|
sg481n | bfc9888 | 2017-08-24 00:58:40 -0400 | [diff] [blame] | 72 | <groupId>org.onap.aaf.inno</groupId>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 73 | <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 |
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 85 |
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 86 |
|
| 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>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 97 | <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>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 110 | <plugin>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 111 | <groupId>org.sonatype.plugins</groupId>
|
| 112 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
| 113 | <version>1.6.7</version>
|
| 114 | <extensions>true</extensions>
|
| 115 | <configuration>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 116 | <nexusUrl>${nexusproxy}</nexusUrl>
|
sg481n | eecd303 | 2017-08-17 17:52:20 -0400 | [diff] [blame] | 117 | <stagingProfileId>176c31dfe190a</stagingProfileId>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 118 | <serverId>ecomp-staging</serverId>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 119 | </configuration>
|
sg481n | b826b44 | 2017-09-08 12:26:03 -0400 | [diff] [blame] | 120 | </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>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 171 | </plugin>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 172 |
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 173 | </plugins>
|
| 174 | </build>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 175 | <distributionManagement>
|
| 176 | <repository>
|
| 177 | <id>ecomp-releases</id>
|
| 178 | <name>AAF Release Repository</name>
|
sg481n | a85b56b | 2017-08-17 17:25:33 -0400 | [diff] [blame] | 179 | <url>${nexusproxy}${releaseNexusPath}</url>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 180 | </repository>
|
| 181 | <snapshotRepository>
|
| 182 | <id>ecomp-snapshots</id>
|
| 183 | <name>AAF Snapshot Repository</name>
|
sg481n | a85b56b | 2017-08-17 17:25:33 -0400 | [diff] [blame] | 184 | <url>${nexusproxy}${snapshotNexusPath}</url>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 185 | </snapshotRepository>
|
sg481n | 1a5c493 | 2017-08-17 18:44:28 -0400 | [diff] [blame] | 186 | <site>
|
| 187 | <id>ecomp-site</id>
|
| 188 | <url>dav:${nexusproxy}${sitePath}</url>
|
| 189 | </site>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 190 | </distributionManagement>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 191 |
|
| 192 | </project>
|