blob: c1c3192ea973aa5e6b8a8d37ca2d155128e199f8 [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
29 <!-- No Parent on Purpose!!! -->
sg481n72b21f22017-08-25 01:47:08 -040030
31
32 <groupId>org.onap.aaf.authz</groupId>
sg481n43854a92017-08-03 17:27:34 -040033 <artifactId>authz-client</artifactId>
sg481n72b21f22017-08-25 01:47:08 -040034 <version>1.0.0-SNAPSHOT</version>
35 <packaging>jar</packaging>
sg481n43854a92017-08-03 17:27:34 -040036 <name>Authz Client</name>
37 <description>Client and XSD Generated code for Authz</description>
sg481n43854a92017-08-03 17:27:34 -040038 <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 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
56 <swm-distFiles-path>/opt/app/aft/${project.artifactId}/${project.version}</swm-distFiles-path>
57 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481naa2c01c2017-08-25 01:29:57 -040058 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
59 <nexusproxy>https://nexus.onap.org</nexusproxy>
60 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
61 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
62 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
63 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
sg481n43854a92017-08-03 17:27:34 -040064 </properties>
65
66 <dependencies>
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>4.10</version>
71 <scope>test</scope>
72 </dependency>
73
74 </dependencies>
75
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.codehaus.mojo</groupId>
80 <artifactId>jaxb2-maven-plugin</artifactId>
81 <version>1.3</version>
82 <executions>
83 <execution>
84 <phase>generate-sources</phase>
85 <goals>
86 <goal>xjc</goal>
87 </goals>
88 </execution>
89 </executions>
90 <configuration>
91 <schemaDirectory>src/main/xsd</schemaDirectory>
92 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-compiler-plugin</artifactId>
97 <configuration>
98 <source>1.6</source>
99 <target>1.6</target>
100 </configuration>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-deploy-plugin</artifactId>
105 <version>2.5</version>
106 <configuration>
107 <skip>false</skip>
108 </configuration>
109 </plugin>
110
111 <!--This plugin's configuration is used to store Eclipse m2e settings
112 only. It has no influence on the Maven build itself. -->
113 <plugin>
114 <groupId>org.eclipse.m2e</groupId>
115 <artifactId>lifecycle-mapping</artifactId>
116 <version>1.0.0</version>
117 <configuration>
118 <lifecycleMappingMetadata>
119 <pluginExecutions>
120 <pluginExecution>
121 <pluginExecutionFilter>
122 <groupId>
123 org.codehaus.mojo
124 </groupId>
125 <artifactId>
126 jaxb2-maven-plugin
127 </artifactId>
128 <versionRange>
129 [1.3,)
130 </versionRange>
131 <goals>
132 <goal>xjc</goal>
133 </goals>
134 </pluginExecutionFilter>
135 <action>
136 <ignore></ignore>
137 </action>
138 </pluginExecution>
139 </pluginExecutions>
140 </lifecycleMappingMetadata>
141 </configuration>
142 </plugin>
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-compiler-plugin</artifactId>
146 <version>2.3.2</version>
147 <configuration>
148 <source>1.6</source>
149 <target>1.6</target>
150 </configuration>
151 </plugin>
152
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-javadoc-plugin</artifactId>
156 <configuration>
157 <failOnError>false</failOnError>
158 </configuration>
159 <executions>
160 <execution>
161 <id>attach-javadocs</id>
162 <goals>
163 <goal>jar</goal>
164 </goals>
165 </execution>
166 </executions>
167 </plugin>
168
169
170 <plugin>
171 <groupId>org.apache.maven.plugins</groupId>
172 <artifactId>maven-source-plugin</artifactId>
173 <version>2.2.1</version>
174 <executions>
175 <execution>
176 <id>attach-sources</id>
177 <goals>
178 <goal>jar-no-fork</goal>
179 </goals>
180 </execution>
181 </executions>
182 </plugin>
sg481naa2c01c2017-08-25 01:29:57 -0400183 <plugin>
184 <groupId>org.sonatype.plugins</groupId>
185 <artifactId>nexus-staging-maven-plugin</artifactId>
186 <version>1.6.7</version>
187 <extensions>true</extensions>
188 <configuration>
189 <nexusUrl>${nexusproxy}</nexusUrl>
190 <stagingProfileId>176c31dfe190a</stagingProfileId>
191 <serverId>ecomp-staging</serverId>
192 </configuration>
193 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400194 </plugins>
195 </build>
196
sg481naa2c01c2017-08-25 01:29:57 -0400197 <distributionManagement>
198 <repository>
199 <id>ecomp-releases</id>
200 <name>AAF Release Repository</name>
201 <url>${nexusproxy}${releaseNexusPath}</url>
202 </repository>
203 <snapshotRepository>
204 <id>ecomp-snapshots</id>
205 <name>AAF Snapshot Repository</name>
206 <url>${nexusproxy}${snapshotNexusPath}</url>
207 </snapshotRepository>
208 <site>
209 <id>ecomp-site</id>
210 <url>dav:${nexusproxy}${sitePath}</url>
211 </site>
212 </distributionManagement>
213<pluginRepositories>
214 <pluginRepository>
215 <id>onap-plugin-snapshots</id>
216 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
217 </pluginRepository>
218 </pluginRepositories>
sg481n43854a92017-08-03 17:27:34 -0400219
sg481naa2c01c2017-08-25 01:29:57 -0400220 <repositories>
221 <repository>
222 <id>central</id>
223 <name>Maven 2 repository 2</name>
224 <url>http://repo2.maven.org/maven2/</url>
225 </repository>
226 <repository>
227 <id>onap-jar-snapshots</id>
228 <url>https://nexus.onap.org/content/repositories/snapshots</url>
229 </repository>
230 <repository>
231 <id>spring-repo</id>
232 <name>Spring repo</name>
233 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
234 </repository>
235 <repository>
236 <id>repository.jboss.org-public</id>
237 <name>JBoss.org Maven repository</name>
238 <url>https://repository.jboss.org/nexus/content/groups/public</url>
239 </repository>
240 </repositories>
sg481n43854a92017-08-03 17:27:34 -0400241
242</project>
243