sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START====================================================
|
sg481n | c548cc9 | 2017-08-09 23:25:05 -0400 | [diff] [blame] | 4 | * org.onap.aaf
|
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 5 | * ===========================================================================
|
| 6 | * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
|
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 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>com.att.authz</groupId>
|
| 29 | <artifactId>parent</artifactId>
|
sg481n | dcf7698 | 2017-08-10 17:50:54 -0400 | [diff] [blame^] | 30 | <version>1.0.0-SNAPSHOT</version>
|
sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 31 | <relativePath>../pom.xml</relativePath>
|
| 32 | </parent>
|
| 33 |
|
| 34 | <artifactId>authz-certman</artifactId>
|
| 35 | <name>AAF Certification Managmenent</name>
|
| 36 | <description>Certificate Manager API</description>
|
| 37 | <url>https://github.com/att/AAF</url>
|
| 38 | <licenses>
|
| 39 | <license>
|
| 40 | <name>BSD License</name>
|
| 41 | <url> </url>
|
| 42 | </license>
|
| 43 | </licenses>
|
| 44 | <developers>
|
| 45 | <developer>
|
| 46 | <name>Jonathan Gathman</name>
|
| 47 | <email></email>
|
| 48 | <organization>ATT</organization>
|
| 49 | <organizationUrl></organizationUrl>
|
| 50 | </developer>
|
| 51 | </developers>
|
| 52 |
|
| 53 |
|
| 54 | <properties>
|
| 55 | <project.swmVersion>45</project.swmVersion>
|
| 56 | </properties>
|
| 57 |
|
| 58 | <dependencies>
|
| 59 | <dependency>
|
| 60 | <groupId>com.att.authz</groupId>
|
| 61 | <artifactId>authz-core</artifactId>
|
| 62 | </dependency>
|
| 63 |
|
| 64 | <dependency>
|
| 65 | <groupId>com.att.authz</groupId>
|
| 66 | <artifactId>authz-cass</artifactId>
|
| 67 | </dependency>
|
| 68 |
|
| 69 | <!-- <dependency>
|
| 70 | <groupId>com.att.authz</groupId>
|
| 71 | <artifactId>authz-att</artifactId>
|
| 72 | </dependency> -->
|
| 73 |
|
| 74 | <dependency>
|
| 75 | <groupId>com.att.cadi</groupId>
|
| 76 | <artifactId>cadi-aaf</artifactId>
|
| 77 | </dependency>
|
| 78 |
|
| 79 | <dependency>
|
| 80 | <groupId>com.google.code.jscep</groupId>
|
| 81 | <artifactId>jscep</artifactId>
|
| 82 | <version>2.4.0</version>
|
| 83 | </dependency>
|
| 84 | <!-- TESTING -->
|
| 85 | <dependency>
|
| 86 | <groupId>org.slf4j</groupId>
|
| 87 | <artifactId>slf4j-log4j12</artifactId>
|
| 88 | </dependency>
|
| 89 | </dependencies>
|
| 90 |
|
| 91 | <build>
|
| 92 | <plugins>
|
| 93 | <plugin>
|
| 94 | <groupId>org.apache.maven.plugins</groupId>
|
| 95 | <artifactId>maven-jar-plugin</artifactId>
|
| 96 | <configuration>
|
| 97 | <includes>
|
| 98 | <include>**/*.class</include>
|
| 99 | </includes>
|
| 100 | </configuration>
|
| 101 | <version>2.3.1</version>
|
| 102 | </plugin>
|
| 103 |
|
| 104 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
| 105 |
|
| 106 | <plugin>
|
| 107 | <groupId>org.apache.maven.plugins</groupId>
|
| 108 | <artifactId>maven-deploy-plugin</artifactId>
|
| 109 | <configuration>
|
| 110 | <skip>true</skip>
|
| 111 | </configuration>
|
| 112 | </plugin>
|
| 113 |
|
| 114 | <plugin>
|
| 115 | <groupId>org.apache.maven.plugins</groupId>
|
| 116 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 117 | <configuration>
|
| 118 | <failOnError>false</failOnError>
|
| 119 | </configuration>
|
| 120 | <executions>
|
| 121 | <execution>
|
| 122 | <id>attach-javadocs</id>
|
| 123 | <goals>
|
| 124 | <goal>jar</goal>
|
| 125 | </goals>
|
| 126 | </execution>
|
| 127 | </executions>
|
| 128 | </plugin>
|
| 129 |
|
| 130 |
|
| 131 | <plugin>
|
| 132 | <groupId>org.apache.maven.plugins</groupId>
|
| 133 | <artifactId>maven-source-plugin</artifactId>
|
| 134 | <version>2.2.1</version>
|
| 135 | <executions>
|
| 136 | <execution>
|
| 137 | <id>attach-sources</id>
|
| 138 | <goals>
|
| 139 | <goal>jar-no-fork</goal>
|
| 140 | </goals>
|
| 141 | </execution>
|
| 142 | </executions>
|
| 143 | </plugin>
|
| 144 |
|
| 145 | <plugin>
|
| 146 | <groupId>org.sonatype.plugins</groupId>
|
| 147 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
| 148 | <version>1.6.7</version>
|
| 149 | <extensions>true</extensions>
|
| 150 | <configuration>
|
| 151 | <serverId>ossrhdme</serverId>
|
| 152 | <nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
| 153 | <autoReleaseAfterClose>true</autoReleaseAfterClose>
|
| 154 | </configuration>
|
| 155 | </plugin>
|
| 156 | </plugins>
|
| 157 | <pluginManagement>
|
| 158 | <plugins/>
|
| 159 | </pluginManagement>
|
| 160 | </build>
|
| 161 |
|
| 162 | <distributionManagement>
|
| 163 | <snapshotRepository>
|
| 164 | <id>ossrhdme</id>
|
| 165 | <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
| 166 | </snapshotRepository>
|
| 167 | <repository>
|
| 168 | <id>ossrhdme</id>
|
| 169 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
| 170 | </repository>
|
| 171 | </distributionManagement>
|
| 172 |
|
| 173 | <scm>
|
| 174 | <connection>https://github.com/att/AAF.git</connection>
|
| 175 | <developerConnection>${project.scm.connection}</developerConnection>
|
| 176 | <url>http://github.com/att/AAF/tree/master</url>
|
| 177 | </scm>
|
| 178 | </project>
|