blob: 17fc4cf01528374c589f95560e31539c7d041fe0 [file] [log] [blame]
sg481n43854a92017-08-03 17:27:34 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
sg481nc548cc92017-08-09 23:25:05 -04004 * org.onap.aaf
sg481n43854a92017-08-03 17:27:34 -04005 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
sg481n43854a92017-08-03 17:27:34 -04007 * ===========================================================================
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>
sg481ndcf76982017-08-10 17:50:54 -040030 <version>1.0.0-SNAPSHOT</version>
sg481n43854a92017-08-03 17:27:34 -040031 <relativePath>../pom.xml</relativePath>
32 </parent>
33
34 <artifactId>authz-fs</artifactId>
35 <name>Authz File Server</name>
36 <description>Independent FileServer via HTTP (not S) for Public Files (i.e. CRLs)</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 <properties>
54 <maven.test.failure.ignore>true</maven.test.failure.ignore>
55 <project.swmVersion>9</project.swmVersion>
56 </properties>
57
58
59 <dependencies>
60 <dependency>
61 <groupId>com.att.authz</groupId>
62 <artifactId>authz-core</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>com.att.cadi</groupId>
66 <artifactId>cadi-core</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>com.att.aft</groupId>
70 <artifactId>dme2</artifactId>
71 </dependency>
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-jar-plugin</artifactId>
79 <configuration>
80 <includes>
81 <include>**/*.class</include>
82 </includes>
83 </configuration>
84 <version>2.3.1</version>
85 </plugin>
86
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-deploy-plugin</artifactId>
90 <configuration>
91 <skip>true</skip>
92 </configuration>
93 </plugin>
94
95
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-javadoc-plugin</artifactId>
99 <configuration>
100 <failOnError>false</failOnError>
101 </configuration>
102 <executions>
103 <execution>
104 <id>attach-javadocs</id>
105 <goals>
106 <goal>jar</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
111
112
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-source-plugin</artifactId>
116 <version>2.2.1</version>
117 <executions>
118 <execution>
119 <id>attach-sources</id>
120 <goals>
121 <goal>jar-no-fork</goal>
122 </goals>
123 </execution>
124 </executions>
125 </plugin>
126
127 <plugin>
128 <groupId>org.sonatype.plugins</groupId>
129 <artifactId>nexus-staging-maven-plugin</artifactId>
130 <version>1.6.7</version>
131 <extensions>true</extensions>
132 <configuration>
133 <serverId>ossrhdme</serverId>
134 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
135 <autoReleaseAfterClose>true</autoReleaseAfterClose>
136 </configuration>
137 </plugin>
138
139
140 </plugins>
141 <pluginManagement>
142 <plugins/>
143 </pluginManagement>
144 </build>
145
146 <distributionManagement>
147 <snapshotRepository>
148 <id>ossrhdme</id>
149 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
150 </snapshotRepository>
151 <repository>
152 <id>ossrhdme</id>
153 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
154 </repository>
155 </distributionManagement>
156
157 <scm>
158 <connection>https://github.com/att/AAF.git</connection>
159 <developerConnection>${project.scm.connection}</developerConnection>
160 <url>http://github.com/att/AAF/tree/master</url>
161 </scm>
162</project>