sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START====================================================
|
| 4 | * org.onap.aaf
|
| 5 | * ===========================================================================
|
| 6 | * Copyright © 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 | * ECOMP is a trademark and service mark of AT&T Intellectual Property.
|
| 22 | *
|
| 23 | -->
|
| 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <parent>
|
| 28 | <groupId>org.onap.aaf.authz</groupId>
|
| 29 | <artifactId>parent</artifactId>
|
| 30 | <version>1.0.0-SNAPSHOT</version>
|
| 31 | <relativePath>../pom.xml</relativePath>
|
| 32 | </parent>
|
| 33 |
|
| 34 | <artifactId>authz-defOrg</artifactId>
|
| 35 | <name>Default Organization</name>
|
| 36 | <description>Example Organization Module</description>
|
| 37 | <packaging>jar</packaging>
|
| 38 | <url>https://github.com/att/AAF</url>
|
| 39 | <licenses>
|
| 40 | <license>
|
| 41 | <name>BSD License</name>
|
| 42 | <url> </url>
|
| 43 | </license>
|
| 44 | </licenses>
|
| 45 | <developers>
|
| 46 | <developer>
|
| 47 | <name>Jonathan Gathman</name>
|
| 48 | <email></email>
|
| 49 | <organization>ATT</organization>
|
| 50 | <organizationUrl></organizationUrl>
|
| 51 | </developer>
|
| 52 | </developers>
|
| 53 |
|
| 54 | <properties>
|
| 55 | <maven.test.failure.ignore>false</maven.test.failure.ignore>
|
| 56 | <project.swmVersion>0</project.swmVersion>
|
| 57 | <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
|
| 58 | <nexusproxy>https://nexus.onap.org</nexusproxy>
|
| 59 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
|
| 60 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
|
| 61 | <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
|
| 62 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
|
| 63 | </properties>
|
| 64 |
|
| 65 |
|
| 66 | <dependencies>
|
| 67 | <dependency>
|
| 68 | <groupId>org.onap.aaf.cadi</groupId>
|
| 69 | <artifactId>cadi-core</artifactId>
|
| 70 | </dependency>
|
| 71 |
|
| 72 | <dependency>
|
| 73 | <groupId>org.onap.aaf.authz</groupId>
|
| 74 | <artifactId>authz-core</artifactId>
|
| 75 | </dependency>
|
| 76 |
|
| 77 | <dependency>
|
| 78 | <groupId>javax.mail</groupId>
|
| 79 | <artifactId>mail</artifactId>
|
| 80 | </dependency>
|
| 81 | </dependencies>
|
| 82 |
|
| 83 | <build>
|
| 84 | <pluginManagement>
|
| 85 | <plugins>
|
| 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>
|
| 93 | <stagingProfileId>176c31dfe190a</stagingProfileId>
|
| 94 | <serverId>ecomp-staging</serverId>
|
| 95 | </configuration>
|
| 96 | </plugin>
|
| 97 | </plugins>
|
| 98 | </pluginManagement>
|
| 99 | </build>
|
| 100 | <distributionManagement>
|
| 101 | <repository>
|
| 102 | <id>ecomp-releases</id>
|
| 103 | <name>AAF Release Repository</name>
|
| 104 | <url>${nexusproxy}${releaseNexusPath}</url>
|
| 105 | </repository>
|
| 106 | <snapshotRepository>
|
| 107 | <id>ecomp-snapshots</id>
|
| 108 | <name>AAF Snapshot Repository</name>
|
| 109 | <url>${nexusproxy}${snapshotNexusPath}</url>
|
| 110 | </snapshotRepository>
|
| 111 | <site>
|
| 112 | <id>ecomp-site</id>
|
| 113 | <url>dav:${nexusproxy}${sitePath}</url>
|
| 114 | </site>
|
| 115 | </distributionManagement>
|
| 116 | <pluginRepositories>
|
| 117 | <pluginRepository>
|
| 118 | <id>onap-plugin-snapshots</id>
|
| 119 | <url>https://nexus.onap.org/content/repositories/snapshots/</url>
|
| 120 | </pluginRepository>
|
| 121 | </pluginRepositories>
|
| 122 |
|
| 123 | <repositories>
|
| 124 | <repository>
|
| 125 | <id>central</id>
|
| 126 | <name>Maven 2 repository 2</name>
|
| 127 | <url>http://repo2.maven.org/maven2/</url>
|
| 128 | </repository>
|
| 129 | <repository>
|
| 130 | <id>onap-jar-snapshots</id>
|
| 131 | <url>https://nexus.onap.org/content/repositories/snapshots</url>
|
| 132 | </repository>
|
| 133 | <repository>
|
| 134 | <id>spring-repo</id>
|
| 135 | <name>Spring repo</name>
|
| 136 | <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
|
| 137 | </repository>
|
| 138 | <repository>
|
| 139 | <id>repository.jboss.org-public</id>
|
| 140 | <name>JBoss.org Maven repository</name>
|
| 141 | <url>https://repository.jboss.org/nexus/content/groups/public</url>
|
| 142 | </repository>
|
| 143 | </repositories>
|
| 144 |
|
| 145 | </project>
|