085110dfabda06ac03d23808c4c07c69983ddc83
[aaf/authz.git] / authz-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3   ============LICENSE_START====================================================\r
4   * org.onap.aaf\r
5   * ===========================================================================\r
6   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
7   * ===========================================================================\r
8   * Licensed under the Apache License, Version 2.0 (the "License");\r
9   * you may not use this file except in compliance with the License.\r
10   * You may obtain a copy of the License at\r
11   * \r
12    *      http://www.apache.org/licenses/LICENSE-2.0\r
13   * \r
14    * Unless required by applicable law or agreed to in writing, software\r
15   * distributed under the License is distributed on an "AS IS" BASIS,\r
16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17   * See the License for the specific language governing permissions and\r
18   * limitations under the License.\r
19   * ============LICENSE_END====================================================\r
20   *\r
21   * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22   *\r
23 -->\r
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
25         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
26         <modelVersion>4.0.0</modelVersion>\r
27         <parent>\r
28                 <groupId>org.onap.aaf.authz</groupId>\r
29                 <artifactId>parent</artifactId>\r
30                 <version>1.0.0-SNAPSHOT</version>\r
31                 <relativePath>../pom.xml</relativePath>\r
32         </parent>\r
33                 \r
34         <artifactId>authz-core</artifactId>\r
35         <name>Authz Core</name>\r
36         <description>Core Libraries for Authz</description>\r
37         <packaging>jar</packaging>\r
38                 <url>https://github.com/att/AAF</url>\r
39         <licenses>\r
40                 <license>\r
41                 <name>BSD License</name>\r
42                 <url> </url>\r
43                 </license>\r
44         </licenses>\r
45         <developers>\r
46                 <developer>\r
47                 <name>Jonathan Gathman</name>\r
48                 <email></email>\r
49         <organization>ATT</organization>\r
50         <organizationUrl></organizationUrl>\r
51                 </developer>\r
52         </developers>\r
53 <properties>\r
54         <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>\r
55         <nexusproxy>https://nexus.onap.org</nexusproxy>\r
56                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>\r
57                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>\r
58                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>\r
59                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>\r
60 </properties>\r
61         <dependencies>\r
62                 <dependency>\r
63                         <groupId>org.onap.aaf.inno</groupId>\r
64                         <artifactId>env</artifactId>\r
65                 </dependency>\r
66                 <dependency>\r
67                         <groupId>org.onap.aaf.inno</groupId>\r
68                         <artifactId>log4j</artifactId>\r
69                 </dependency>\r
70                 <dependency>\r
71                         <groupId>org.onap.aaf.inno</groupId>\r
72                         <artifactId>rosetta</artifactId>\r
73                 </dependency>\r
74                 <dependency>\r
75                         <groupId>org.onap.aaf.cadi</groupId>\r
76                         <artifactId>cadi-aaf</artifactId>\r
77                                 <exclusions>\r
78                                   <exclusion> \r
79                                         <groupId>javax.servlet</groupId>\r
80                                 <artifactId>servlet-api</artifactId>\r
81                            </exclusion>\r
82                             </exclusions> \r
83                         \r
84                 </dependency>\r
85                 <dependency>\r
86                   <groupId>javax.servlet</groupId>\r
87                   <artifactId>servlet-api</artifactId>\r
88                 </dependency>\r
89 \r
90         </dependencies>\r
91 \r
92         <build>\r
93                 <plugins>\r
94                 </plugins>\r
95                 <pluginManagement>\r
96                         <plugins>\r
97                          \r
98                                 <plugin>\r
99                                         <groupId>org.apache.maven.plugins</groupId>\r
100                                         <artifactId>maven-deploy-plugin</artifactId>\r
101                                         <version>2.6</version>\r
102                                         <configuration>\r
103                                                 <skip>false</skip>\r
104                                         </configuration>\r
105                             </plugin>\r
106                                 \r
107                 <plugin>\r
108                         <groupId>org.apache.maven.plugins</groupId>\r
109                         <artifactId>maven-javadoc-plugin</artifactId>\r
110                         <configuration>\r
111                         <failOnError>false</failOnError>\r
112                         </configuration>\r
113                         <executions>\r
114                                 <execution>\r
115                                         <id>attach-javadocs</id>\r
116                                         <goals>\r
117                                                 <goal>jar</goal>\r
118                                         </goals>\r
119                                 </execution>\r
120                         </executions>\r
121                 </plugin> \r
122            \r
123            \r
124                <plugin>\r
125                       <groupId>org.apache.maven.plugins</groupId>\r
126                       <artifactId>maven-source-plugin</artifactId>\r
127                       <version>2.2.1</version>\r
128                       <executions>\r
129                         <execution>\r
130                           <id>attach-sources</id>\r
131                           <goals>\r
132                             <goal>jar-no-fork</goal>\r
133                           </goals>\r
134                         </execution>\r
135                       </executions>\r
136                     </plugin>\r
137                         \r
138  <plugin>\r
139                                 <groupId>org.sonatype.plugins</groupId>\r
140                                 <artifactId>nexus-staging-maven-plugin</artifactId>\r
141                                 <version>1.6.7</version>\r
142                                 <extensions>true</extensions>\r
143                                 <configuration>\r
144                                         <nexusUrl>${nexusproxy}</nexusUrl>\r
145                                         <stagingProfileId>176c31dfe190a</stagingProfileId>\r
146                                         <serverId>ecomp-staging</serverId>\r
147                                 </configuration>\r
148                         </plugin>\r
149                 \r
150                         </plugins>\r
151                 </pluginManagement>\r
152         </build>\r
153         <distributionManagement>\r
154                 <repository>\r
155                         <id>ecomp-releases</id>\r
156                         <name>AAF Release Repository</name>\r
157                         <url>${nexusproxy}${releaseNexusPath}</url>\r
158                 </repository>\r
159                 <snapshotRepository>\r
160                         <id>ecomp-snapshots</id>\r
161                         <name>AAF Snapshot Repository</name>\r
162                         <url>${nexusproxy}${snapshotNexusPath}</url>\r
163                 </snapshotRepository>\r
164                 <site>\r
165                         <id>ecomp-site</id>\r
166                         <url>dav:${nexusproxy}${sitePath}</url>\r
167                 </site>\r
168         </distributionManagement>\r
169 <pluginRepositories>\r
170         <pluginRepository>\r
171             <id>onap-plugin-snapshots</id>\r
172             <url>https://nexus.onap.org/content/repositories/snapshots/</url>\r
173         </pluginRepository>\r
174     </pluginRepositories>\r
175         \r
176         <repositories>\r
177                 <repository>\r
178                         <id>central</id>\r
179                         <name>Maven 2 repository 2</name>\r
180                         <url>http://repo2.maven.org/maven2/</url>\r
181                 </repository>\r
182                 <repository>\r
183             <id>onap-jar-snapshots</id>\r
184             <url>https://nexus.onap.org/content/repositories/snapshots</url>\r
185         </repository>\r
186                 <repository>\r
187                         <id>spring-repo</id>\r
188                         <name>Spring repo</name>\r
189                         <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>\r
190                 </repository>\r
191                 <repository>\r
192                         <id>repository.jboss.org-public</id>\r
193                         <name>JBoss.org Maven repository</name>\r
194                         <url>https://repository.jboss.org/nexus/content/groups/public</url>\r
195                 </repository>\r
196         </repositories>\r
197         \r
198 </project>\r
199 \r