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 | <modelVersion>4.0.0</modelVersion>
|
| 33 |
|
| 34 | <artifactId>env</artifactId>
|
| 35 | <name>Env</name>
|
| 36 | <packaging>jar</packaging>
|
| 37 | <url>https://github.com/att/AAF</url>
|
| 38 | <description>INNO</description>
|
| 39 | <licenses>
|
| 40 | <license>
|
| 41 | <name>BSD License</name>
|
| 42 | <url> </url>
|
| 43 | </license>
|
| 44 | </licenses>
|
| 45 |
|
| 46 | <developers>
|
| 47 | <developer>
|
| 48 | <name>Jonathan Gathman</name>
|
| 49 | <email></email>
|
| 50 | <organization>ATT</organization>
|
| 51 | <organizationUrl></organizationUrl>
|
| 52 | </developer>
|
| 53 | </developers>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 54 | <properties>
|
| 55 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 56 | <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
|
| 57 | <nexusproxy>https://nexus.onap.org</nexusproxy>
|
| 58 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
|
| 59 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
|
| 60 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
|
sg481n | 1a5c493 | 2017-08-17 18:44:28 -0400 | [diff] [blame] | 61 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 62 | </properties>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 63 | <dependencies>
|
| 64 | <dependency>
|
| 65 | <groupId>log4j</groupId>
|
| 66 | <artifactId>log4j</artifactId>
|
| 67 | <scope>compile</scope> <!-- Provides scope only, in case other users prefer another Logging Implementation -->
|
| 68 | </dependency>
|
| 69 | </dependencies>
|
| 70 | <build>
|
| 71 | <plugins>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 72 | <plugin>
|
| 73 | <groupId>org.apache.maven.plugins</groupId>
|
| 74 | <artifactId>maven-source-plugin</artifactId>
|
| 75 | <version>2.2.1</version>
|
| 76 | <executions>
|
| 77 | <execution>
|
| 78 | <id>attach-sources</id>
|
| 79 | <goals>
|
| 80 | <goal>jar-no-fork</goal>
|
| 81 | </goals>
|
| 82 | </execution>
|
| 83 | </executions>
|
| 84 | </plugin>
|
| 85 |
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 86 | <plugin>
|
| 87 | <groupId>org.sonatype.plugins</groupId>
|
| 88 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
| 89 | <version>1.6.7</version>
|
| 90 | <extensions>true</extensions>
|
| 91 | <configuration>
|
| 92 | <nexusUrl>${nexusproxy}</nexusUrl>
|
sg481n | eecd303 | 2017-08-17 17:52:20 -0400 | [diff] [blame] | 93 | <stagingProfileId>176c31dfe190a</stagingProfileId>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 94 | <serverId>ecomp-staging</serverId>
|
| 95 | </configuration>
|
| 96 | </plugin>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 97 |
|
| 98 | </plugins>
|
| 99 |
|
| 100 | </build>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 101 | <distributionManagement>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 102 | <repository>
|
| 103 | <id>ecomp-releases</id>
|
| 104 | <name>AAF Release Repository</name>
|
sg481n | a85b56b | 2017-08-17 17:25:33 -0400 | [diff] [blame] | 105 | <url>${nexusproxy}${releaseNexusPath}</url>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 106 | </repository>
|
| 107 | <snapshotRepository>
|
| 108 | <id>ecomp-snapshots</id>
|
| 109 | <name>AAF Snapshot Repository</name>
|
sg481n | a85b56b | 2017-08-17 17:25:33 -0400 | [diff] [blame] | 110 | <url>${nexusproxy}${snapshotNexusPath}</url>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 111 | </snapshotRepository>
|
sg481n | 1a5c493 | 2017-08-17 18:44:28 -0400 | [diff] [blame] | 112 | <site>
|
| 113 | <id>ecomp-site</id>
|
| 114 | <url>dav:${nexusproxy}${sitePath}</url>
|
| 115 | </site>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 116 | </distributionManagement>
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 117 | <pluginRepositories>
|
| 118 | <pluginRepository>
|
| 119 | <id>onap-plugin-snapshots</id>
|
| 120 | <url>https://nexus.onap.org/content/repositories/snapshots/</url>
|
| 121 | </pluginRepository>
|
| 122 | </pluginRepositories>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 123 |
|
sg481n | a821bc9 | 2017-08-16 17:34:08 -0400 | [diff] [blame] | 124 | <repositories>
|
| 125 | <repository>
|
| 126 | <id>central</id>
|
| 127 | <name>Maven 2 repository 2</name>
|
| 128 | <url>http://repo2.maven.org/maven2/</url>
|
| 129 | </repository>
|
| 130 | <repository>
|
| 131 | <id>onap-jar-snapshots</id>
|
| 132 | <url>https://nexus.onap.org/content/repositories/snapshots</url>
|
| 133 | </repository>
|
| 134 | <repository>
|
| 135 | <id>spring-repo</id>
|
| 136 | <name>Spring repo</name>
|
| 137 | <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
|
| 138 | </repository>
|
| 139 | <repository>
|
| 140 | <id>repository.jboss.org-public</id>
|
| 141 | <name>JBoss.org Maven repository</name>
|
| 142 | <url>https://repository.jboss.org/nexus/content/groups/public</url>
|
| 143 | </repository>
|
| 144 | </repositories>
|
sg481n | 37e4710 | 2017-08-03 17:44:44 -0400 | [diff] [blame] | 145 | </project>
|
| 146 |
|