ad79b299c8da0228ba152648344d8bb8f92b395e
[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>com.att.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 \r
54         <dependencies>\r
55                 <dependency>\r
56                         <groupId>com.att.inno</groupId>\r
57                         <artifactId>env</artifactId>\r
58                 </dependency>\r
59                 <dependency>\r
60                         <groupId>com.att.inno</groupId>\r
61                         <artifactId>log4j</artifactId>\r
62                 </dependency>\r
63                 <dependency>\r
64                         <groupId>com.att.inno</groupId>\r
65                         <artifactId>rosetta</artifactId>\r
66                 </dependency>\r
67                 <dependency>\r
68                         <groupId>com.att.cadi</groupId>\r
69                         <artifactId>cadi-aaf</artifactId>\r
70                                 <exclusions>\r
71                                   <exclusion> \r
72                                         <groupId>javax.servlet</groupId>\r
73                                 <artifactId>servlet-api</artifactId>\r
74                            </exclusion>\r
75                             </exclusions> \r
76                         \r
77                 </dependency>\r
78                 <dependency>\r
79                   <groupId>javax.servlet</groupId>\r
80                   <artifactId>servlet-api</artifactId>\r
81                 </dependency>\r
82 \r
83         </dependencies>\r
84 \r
85         <build>\r
86                 <plugins>\r
87                 </plugins>\r
88                 <pluginManagement>\r
89                         <plugins>\r
90                          \r
91                                 <plugin>\r
92                                         <groupId>org.apache.maven.plugins</groupId>\r
93                                         <artifactId>maven-deploy-plugin</artifactId>\r
94                                         <version>2.6</version>\r
95                                         <configuration>\r
96                                                 <skip>false</skip>\r
97                                         </configuration>\r
98                             </plugin>\r
99                                 \r
100                 <plugin>\r
101                         <groupId>org.apache.maven.plugins</groupId>\r
102                         <artifactId>maven-javadoc-plugin</artifactId>\r
103                         <configuration>\r
104                         <failOnError>false</failOnError>\r
105                         </configuration>\r
106                         <executions>\r
107                                 <execution>\r
108                                         <id>attach-javadocs</id>\r
109                                         <goals>\r
110                                                 <goal>jar</goal>\r
111                                         </goals>\r
112                                 </execution>\r
113                         </executions>\r
114                 </plugin> \r
115            \r
116            \r
117                <plugin>\r
118                       <groupId>org.apache.maven.plugins</groupId>\r
119                       <artifactId>maven-source-plugin</artifactId>\r
120                       <version>2.2.1</version>\r
121                       <executions>\r
122                         <execution>\r
123                           <id>attach-sources</id>\r
124                           <goals>\r
125                             <goal>jar-no-fork</goal>\r
126                           </goals>\r
127                         </execution>\r
128                       </executions>\r
129                     </plugin>\r
130                         \r
131                 <plugin>\r
132                         <groupId>org.sonatype.plugins</groupId>\r
133                         <artifactId>nexus-staging-maven-plugin</artifactId>\r
134                         <version>1.6.7</version>\r
135                         <extensions>true</extensions>\r
136                         <configuration>\r
137                         <serverId>ossrhdme</serverId>\r
138                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>\r
139                         <autoReleaseAfterClose>true</autoReleaseAfterClose>\r
140                         </configuration>\r
141                 </plugin>\r
142                 \r
143                         </plugins>\r
144                 </pluginManagement>\r
145         </build>\r
146 </project>\r
147 \r