blob: 5c913be85442a82e01c2faafe063b962548b41be [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-cmd</artifactId>
35 <name>Authz Command</name>
36 <description>Command Line Processor for Authz</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>21</project.swmVersion>
57 </properties>
58
59 <dependencies>
60 <dependency>
61 <groupId>com.att.cadi</groupId>
62 <artifactId>cadi-aaf</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>com.att.authz</groupId>
67 <artifactId>authz-core</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>jline</groupId>
72 <artifactId>jline</artifactId>
73 <version>2.14.2</version>
74 </dependency>
75
76 <dependency>
77 <groupId>org.slf4j</groupId>
78 <artifactId>slf4j-log4j12</artifactId>
79 </dependency>
80<!--
81 <dependency>
82 <groupId>com.att.aft</groupId>
83 <artifactId>dme2</artifactId>
84 </dependency>
85 -->
86
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <artifactId>maven-assembly-plugin</artifactId>
93 <version>2.4</version>
94 <configuration>
95 <classifier>tests</classifier>
96 <archive>
97 <manifestEntries>
98 <Sealed>true</Sealed>
99 </manifestEntries>
100 </archive>
101 </configuration>
102 <executions>
103 <execution>
104 <id>full</id>
105 <phase>package</phase>
106 <goals>
107 <goal>single</goal>
108 </goals>
109 <configuration>
110 <descriptors>
111 <descriptor>src/main/assemble/authz-cmd.xml</descriptor>
112 </descriptors>
113 </configuration>
114 </execution>
115 </executions>
116 </plugin>
117
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-deploy-plugin</artifactId>
121 <configuration>
122 <skip>true</skip>
123 </configuration>
124 </plugin>
125
126
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-javadoc-plugin</artifactId>
130 <configuration>
131 <failOnError>false</failOnError>
132 </configuration>
133 <executions>
134 <execution>
135 <id>attach-javadocs</id>
136 <goals>
137 <goal>jar</goal>
138 </goals>
139 </execution>
140 </executions>
141 </plugin>
142
143
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-source-plugin</artifactId>
147 <version>2.2.1</version>
148 <executions>
149 <execution>
150 <id>attach-sources</id>
151 <goals>
152 <goal>jar-no-fork</goal>
153 </goals>
154 </execution>
155 </executions>
156 </plugin>
157
158 <plugin>
159 <groupId>org.sonatype.plugins</groupId>
160 <artifactId>nexus-staging-maven-plugin</artifactId>
161 <version>1.6.7</version>
162 <extensions>true</extensions>
163 <configuration>
164 <serverId>ossrhdme</serverId>
165 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
166 <autoReleaseAfterClose>true</autoReleaseAfterClose>
167 </configuration>
168 </plugin>
169
170 </plugins>
171 <pluginManagement>
172 <plugins/>
173 </pluginManagement>
174 </build>
175
176</project>