7120f35098dd6b244e8117a12eb3222927c85d26
[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.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/xsd/maven-4.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-core</artifactId>\r
36         <name>Authz Core</name>\r
37         <description>Core Libraries for Authz</description>\r
38         <packaging>jar</packaging>\r
39                 <url>https://github.com/att/AAF</url>\r
40         <licenses>\r
41                 <license>\r
42                 <name>BSD License</name>\r
43                 <url> </url>\r
44                 </license>\r
45         </licenses>\r
46         <developers>\r
47                 <developer>\r
48                 <name>Jonathan Gathman</name>\r
49                 <email></email>\r
50         <organization>ATT</organization>\r
51         <organizationUrl></organizationUrl>\r
52                 </developer>\r
53         </developers>\r
54 \r
55         <dependencies>\r
56                 <dependency>\r
57                         <groupId>com.att.inno</groupId>\r
58                         <artifactId>env</artifactId>\r
59                 </dependency>\r
60                 <dependency>\r
61                         <groupId>com.att.inno</groupId>\r
62                         <artifactId>log4j</artifactId>\r
63                 </dependency>\r
64                 <dependency>\r
65                         <groupId>com.att.inno</groupId>\r
66                         <artifactId>rosetta</artifactId>\r
67                 </dependency>\r
68                 <dependency>\r
69                         <groupId>com.att.cadi</groupId>\r
70                         <artifactId>cadi-aaf</artifactId>\r
71                                 <exclusions>\r
72                                   <exclusion> \r
73                                         <groupId>javax.servlet</groupId>\r
74                                 <artifactId>servlet-api</artifactId>\r
75                            </exclusion>\r
76                             </exclusions> \r
77                         \r
78                 </dependency>\r
79                 <dependency>\r
80                   <groupId>javax.servlet</groupId>\r
81                   <artifactId>servlet-api</artifactId>\r
82                 </dependency>\r
83 \r
84         </dependencies>\r
85 \r
86         <build>\r
87                 <plugins>\r
88                 </plugins>\r
89                 <pluginManagement>\r
90                         <plugins>\r
91                          \r
92                                 <plugin>\r
93                                         <groupId>org.apache.maven.plugins</groupId>\r
94                                         <artifactId>maven-deploy-plugin</artifactId>\r
95                                         <version>2.6</version>\r
96                                         <configuration>\r
97                                                 <skip>false</skip>\r
98                                         </configuration>\r
99                             </plugin>\r
100                                 \r
101                 <plugin>\r
102                         <groupId>org.apache.maven.plugins</groupId>\r
103                         <artifactId>maven-javadoc-plugin</artifactId>\r
104                         <configuration>\r
105                         <failOnError>false</failOnError>\r
106                         </configuration>\r
107                         <executions>\r
108                                 <execution>\r
109                                         <id>attach-javadocs</id>\r
110                                         <goals>\r
111                                                 <goal>jar</goal>\r
112                                         </goals>\r
113                                 </execution>\r
114                         </executions>\r
115                 </plugin> \r
116            \r
117            \r
118                <plugin>\r
119                       <groupId>org.apache.maven.plugins</groupId>\r
120                       <artifactId>maven-source-plugin</artifactId>\r
121                       <version>2.2.1</version>\r
122                       <executions>\r
123                         <execution>\r
124                           <id>attach-sources</id>\r
125                           <goals>\r
126                             <goal>jar-no-fork</goal>\r
127                           </goals>\r
128                         </execution>\r
129                       </executions>\r
130                     </plugin>\r
131                         \r
132                 <plugin>\r
133                         <groupId>org.sonatype.plugins</groupId>\r
134                         <artifactId>nexus-staging-maven-plugin</artifactId>\r
135                         <version>1.6.7</version>\r
136                         <extensions>true</extensions>\r
137                         <configuration>\r
138                         <serverId>ossrhdme</serverId>\r
139                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>\r
140                         <autoReleaseAfterClose>true</autoReleaseAfterClose>\r
141                         </configuration>\r
142                 </plugin>\r
143                 \r
144                         </plugins>\r
145                 </pluginManagement>\r
146         </build>\r
147 </project>\r
148 \r