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