[AAF-21] Initial code import
[aaf/authz.git] / authz-gw / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--\r
3   ============LICENSE_START====================================================\r
4   * org.onap.aai\r
5   * ===========================================================================\r
6   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
7   * Copyright © 2017 Amdocs\r
8   * ===========================================================================\r
9   * Licensed under the Apache License, Version 2.0 (the "License");\r
10   * you may not use this file except in compliance with the License.\r
11   * You may obtain a copy of the License at\r
12   * \r
13    *      http://www.apache.org/licenses/LICENSE-2.0\r
14   * \r
15    * Unless required by applicable law or agreed to in writing, software\r
16   * distributed under the License is distributed on an "AS IS" BASIS,\r
17   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
18   * See the License for the specific language governing permissions and\r
19   * limitations under the License.\r
20   * ============LICENSE_END====================================================\r
21   *\r
22   * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
23   *\r
24 -->\r
25 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
26         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
27         <modelVersion>4.0.0</modelVersion>\r
28         <parent>\r
29                 <groupId>com.att.authz</groupId>\r
30                 <artifactId>parent</artifactId>\r
31                 <version>2.0.15</version>\r
32                 <relativePath>../pom.xml</relativePath>\r
33         </parent>\r
34                 \r
35         <artifactId>authz-gw</artifactId>\r
36         <name>Authz Gate/Wall</name>\r
37         <description>GW API</description>\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 \r
54         <properties>\r
55                 <maven.test.failure.ignore>true</maven.test.failure.ignore>\r
56                 <project.swmVersion>30</project.swmVersion>\r
57         </properties>\r
58                 \r
59         <dependencies>\r
60         <dependency>\r
61             <groupId>com.att.authz</groupId>\r
62             <artifactId>authz-core</artifactId>\r
63          \r
64             <exclusions>\r
65                           <exclusion> \r
66                                         <groupId>javax.servlet</groupId>\r
67                         <artifactId>servlet-api</artifactId>\r
68                                            </exclusion>\r
69                     </exclusions> \r
70         </dependency>\r
71             \r
72                 <dependency> \r
73                         <groupId>com.att.cadi</groupId>\r
74                         <artifactId>cadi-aaf</artifactId>\r
75                 </dependency>\r
76 \r
77         <!--    <dependency> \r
78                         <groupId>com.att.cadi</groupId>\r
79                         <artifactId>cadi-tguard</artifactId>\r
80                 </dependency>   -->\r
81                 \r
82         </dependencies>\r
83         \r
84         <build>\r
85                 <plugins>\r
86                         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->\r
87                                 <plugin>\r
88                                         <groupId>org.codehaus.mojo</groupId>\r
89                                         <artifactId>jaxb2-maven-plugin</artifactId>\r
90                                 </plugin>\r
91                     <plugin>\r
92                                 <groupId>org.apache.maven.plugins</groupId>\r
93                                 <artifactId>maven-jar-plugin</artifactId>\r
94                                         <configuration>\r
95                                 <includes>\r
96                                         <include>**/*.class</include>\r
97                                 </includes>\r
98                                         </configuration>\r
99                                         <version>2.3.1</version>\r
100                                 </plugin>\r
101                             \r
102                             <plugin>\r
103                                         <groupId>org.apache.maven.plugins</groupId>\r
104                                         <artifactId>maven-deploy-plugin</artifactId>\r
105                                         <configuration>\r
106                                                 <skip>true</skip>\r
107                                         </configuration>\r
108                             </plugin>\r
109                                 \r
110                 <plugin>\r
111                         <groupId>org.apache.maven.plugins</groupId>\r
112                         <artifactId>maven-javadoc-plugin</artifactId>\r
113                         <configuration>\r
114                         <failOnError>false</failOnError>\r
115                         </configuration>\r
116                         <executions>\r
117                                 <execution>\r
118                                         <id>attach-javadocs</id>\r
119                                         <goals>\r
120                                                 <goal>jar</goal>\r
121                                         </goals>\r
122                                 </execution>\r
123                         </executions>\r
124                 </plugin> \r
125            \r
126            \r
127                <plugin>\r
128                       <groupId>org.apache.maven.plugins</groupId>\r
129                       <artifactId>maven-source-plugin</artifactId>\r
130                       <version>2.2.1</version>\r
131                       <executions>\r
132                         <execution>\r
133                           <id>attach-sources</id>\r
134                           <goals>\r
135                             <goal>jar-no-fork</goal>\r
136                           </goals>\r
137                         </execution>\r
138                       </executions>\r
139                     </plugin>\r
140 \r
141                         \r
142                 <plugin>\r
143                         <groupId>org.sonatype.plugins</groupId>\r
144                         <artifactId>nexus-staging-maven-plugin</artifactId>\r
145                         <version>1.6.7</version>\r
146                         <extensions>true</extensions>\r
147                         <configuration>\r
148                         <serverId>ossrhdme</serverId>\r
149                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>\r
150                         <autoReleaseAfterClose>true</autoReleaseAfterClose>\r
151                         </configuration>\r
152                 </plugin>\r
153                 \r
154                         </plugins>\r
155                 <pluginManagement>\r
156                         <plugins/>\r
157                 </pluginManagement>\r
158         </build>\r
159 \r
160         <distributionManagement>\r
161                 <snapshotRepository>\r
162                         <id>ossrhdme</id>\r
163                         <url>https://oss.sonatype.org/content/repositories/snapshots</url>\r
164                 </snapshotRepository>\r
165                 <repository>\r
166                         <id>ossrhdme</id>\r
167                         <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>\r
168                 </repository>\r
169         </distributionManagement>\r
170         \r
171         <scm>\r
172                 <connection>https://github.com/att/AAF.git</connection>\r
173                 <developerConnection>${project.scm.connection}</developerConnection>\r
174                 <url>http://github.com/att/AAF/tree/master</url>\r
175         </scm>\r
176 </project>\r