[AAF-21] Initial code import
[aaf/authz.git] / authz-fs / 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-fs</artifactId>\r
36         <name>Authz File Server</name>\r
37         <description>Independent FileServer via HTTP (not S) for Public Files (i.e. CRLs)</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>9</project.swmVersion>\r
57         </properties>\r
58         \r
59                 \r
60         <dependencies>\r
61         <dependency>\r
62             <groupId>com.att.authz</groupId>\r
63             <artifactId>authz-core</artifactId>\r
64         </dependency>\r
65         <dependency> \r
66                         <groupId>com.att.cadi</groupId>\r
67                         <artifactId>cadi-core</artifactId>\r
68                 </dependency>\r
69                 <dependency>\r
70                     <groupId>com.att.aft</groupId>\r
71                         <artifactId>dme2</artifactId>\r
72                 </dependency>\r
73         </dependencies>\r
74         \r
75         <build>\r
76                 <plugins>\r
77             <plugin>\r
78                                 <groupId>org.apache.maven.plugins</groupId>\r
79                                 <artifactId>maven-jar-plugin</artifactId>\r
80                                         <configuration>\r
81                                 <includes>\r
82                                         <include>**/*.class</include>\r
83                                 </includes>\r
84                                         </configuration>\r
85                                         <version>2.3.1</version>\r
86                                 </plugin>\r
87 \r
88                             <plugin>\r
89                                         <groupId>org.apache.maven.plugins</groupId>\r
90                                         <artifactId>maven-deploy-plugin</artifactId>\r
91                                         <configuration>\r
92                                                 <skip>true</skip>\r
93                                         </configuration>\r
94                             </plugin>\r
95                                 \r
96                                 \r
97                                                                         <plugin>\r
98                         <groupId>org.apache.maven.plugins</groupId>\r
99                         <artifactId>maven-javadoc-plugin</artifactId>\r
100                         <configuration>\r
101                         <failOnError>false</failOnError>\r
102                         </configuration>\r
103                         <executions>\r
104                                 <execution>\r
105                                         <id>attach-javadocs</id>\r
106                                         <goals>\r
107                                                 <goal>jar</goal>\r
108                                         </goals>\r
109                                 </execution>\r
110                         </executions>\r
111                 </plugin> \r
112            \r
113            \r
114                <plugin>\r
115                       <groupId>org.apache.maven.plugins</groupId>\r
116                       <artifactId>maven-source-plugin</artifactId>\r
117                       <version>2.2.1</version>\r
118                       <executions>\r
119                         <execution>\r
120                           <id>attach-sources</id>\r
121                           <goals>\r
122                             <goal>jar-no-fork</goal>\r
123                           </goals>\r
124                         </execution>\r
125                       </executions>\r
126                     </plugin>\r
127                         \r
128                 <plugin>\r
129                         <groupId>org.sonatype.plugins</groupId>\r
130                         <artifactId>nexus-staging-maven-plugin</artifactId>\r
131                         <version>1.6.7</version>\r
132                         <extensions>true</extensions>\r
133                         <configuration>\r
134                         <serverId>ossrhdme</serverId>\r
135                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>\r
136                         <autoReleaseAfterClose>true</autoReleaseAfterClose>\r
137                         </configuration>\r
138                 </plugin>\r
139                 \r
140                 \r
141                         </plugins>\r
142                 <pluginManagement>\r
143                         <plugins/>\r
144                 </pluginManagement>\r
145         </build>\r
146 \r
147         <distributionManagement>\r
148                 <snapshotRepository>\r
149                         <id>ossrhdme</id>\r
150                         <url>https://oss.sonatype.org/content/repositories/snapshots</url>\r
151                 </snapshotRepository>\r
152                 <repository>\r
153                         <id>ossrhdme</id>\r
154                         <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>\r
155                 </repository>\r
156         </distributionManagement>\r
157         \r
158         <scm>\r
159                 <connection>https://github.com/att/AAF.git</connection>\r
160                 <developerConnection>${project.scm.connection}</developerConnection>\r
161                 <url>http://github.com/att/AAF/tree/master</url>\r
162         </scm>\r
163 </project>\r