blob: c79adfcf154d775e059eeb2ac9615e641d795ebc [file] [log] [blame]
sg481n43854a92017-08-03 17:27:34 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aai
5 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 * Copyright © 2017 Amdocs
8 * ===========================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END====================================================
21 *
22 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 *
24-->
25<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28 <parent>
29 <groupId>com.att.authz</groupId>
30 <artifactId>parent</artifactId>
31 <version>2.0.15</version>
32 <relativePath>../pom.xml</relativePath>
33 </parent>
34
35 <artifactId>authz-cmd</artifactId>
36 <name>Authz Command</name>
37 <description>Command Line Processor for Authz</description>
38 <packaging>jar</packaging>
39 <url>https://github.com/att/AAF</url>
40 <licenses>
41 <license>
42 <name>BSD License</name>
43 <url> </url>
44 </license>
45 </licenses>
46 <developers>
47 <developer>
48 <name>Jonathan Gathman</name>
49 <email></email>
50 <organization>ATT</organization>
51 <organizationUrl></organizationUrl>
52 </developer>
53 </developers>
54
55 <properties>
56 <maven.test.failure.ignore>false</maven.test.failure.ignore>
57 <project.swmVersion>21</project.swmVersion>
58 </properties>
59
60 <dependencies>
61 <dependency>
62 <groupId>com.att.cadi</groupId>
63 <artifactId>cadi-aaf</artifactId>
64 </dependency>
65
66 <dependency>
67 <groupId>com.att.authz</groupId>
68 <artifactId>authz-core</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>jline</groupId>
73 <artifactId>jline</artifactId>
74 <version>2.14.2</version>
75 </dependency>
76
77 <dependency>
78 <groupId>org.slf4j</groupId>
79 <artifactId>slf4j-log4j12</artifactId>
80 </dependency>
81<!--
82 <dependency>
83 <groupId>com.att.aft</groupId>
84 <artifactId>dme2</artifactId>
85 </dependency>
86 -->
87
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <artifactId>maven-assembly-plugin</artifactId>
94 <version>2.4</version>
95 <configuration>
96 <classifier>tests</classifier>
97 <archive>
98 <manifestEntries>
99 <Sealed>true</Sealed>
100 </manifestEntries>
101 </archive>
102 </configuration>
103 <executions>
104 <execution>
105 <id>full</id>
106 <phase>package</phase>
107 <goals>
108 <goal>single</goal>
109 </goals>
110 <configuration>
111 <descriptors>
112 <descriptor>src/main/assemble/authz-cmd.xml</descriptor>
113 </descriptors>
114 </configuration>
115 </execution>
116 </executions>
117 </plugin>
118
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-deploy-plugin</artifactId>
122 <configuration>
123 <skip>true</skip>
124 </configuration>
125 </plugin>
126
127
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-javadoc-plugin</artifactId>
131 <configuration>
132 <failOnError>false</failOnError>
133 </configuration>
134 <executions>
135 <execution>
136 <id>attach-javadocs</id>
137 <goals>
138 <goal>jar</goal>
139 </goals>
140 </execution>
141 </executions>
142 </plugin>
143
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-source-plugin</artifactId>
148 <version>2.2.1</version>
149 <executions>
150 <execution>
151 <id>attach-sources</id>
152 <goals>
153 <goal>jar-no-fork</goal>
154 </goals>
155 </execution>
156 </executions>
157 </plugin>
158
159 <plugin>
160 <groupId>org.sonatype.plugins</groupId>
161 <artifactId>nexus-staging-maven-plugin</artifactId>
162 <version>1.6.7</version>
163 <extensions>true</extensions>
164 <configuration>
165 <serverId>ossrhdme</serverId>
166 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
167 <autoReleaseAfterClose>true</autoReleaseAfterClose>
168 </configuration>
169 </plugin>
170
171 </plugins>
172 <pluginManagement>
173 <plugins/>
174 </pluginManagement>
175 </build>
176
177</project>