5ad6baac576c24dd38f8b78026e86deca367a8b5
[aaf/authz.git] / cadi / core / pom.xml
1 <!-- * ============LICENSE_START==================================================== 
2         * org.onap.aaf * =========================================================================== 
3         * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. * =========================================================================== 
4         * Licensed under the Apache License, Version 2.0 (the "License"); * you may 
5         not use this file except in compliance with the License. * You may obtain 
6         a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * 
7         * Unless required by applicable law or agreed to in writing, software * distributed 
8         under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES 
9         OR CONDITIONS OF ANY KIND, either express or implied. * See the License for 
10         the specific language governing permissions and * limitations under the License. 
11         * ============LICENSE_END==================================================== 
12         * -->
13 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15         <parent>
16                 <groupId>org.onap.aaf.cadi</groupId>
17                 <artifactId>parent</artifactId>
18                 <relativePath>..</relativePath>
19                 <version>1.5.0-SNAPSHOT</version>
20         </parent>
21
22         <modelVersion>4.0.0</modelVersion>
23         <name>AAF CADI Core Framework</name>
24         <artifactId>aaf-cadi-core</artifactId>
25         <packaging>jar</packaging>
26
27         <developers>
28                 <developer>
29                         <name>Jonathan Gathman</name>
30                         <email>jonathan.gathman@att.com</email>
31                         <organization>ATT</organization>
32                         <roles>
33                                 <role>Architect</role>
34                                 <role>Lead Developer</role>
35                         </roles>
36                 </developer>
37                 <developer>
38                         <name>Gabe Maurer</name>
39                         <email>gabe.maurer@att.com</email>
40                         <organization>ATT</organization>
41                         <roles>
42                                 <role>Developer</role>
43                         </roles>
44                 </developer>
45                 <developer>
46                         <name>Ian Howell</name>
47                         <email>ian.howell@att.com</email>
48                         <organization>ATT</organization>
49                         <roles>
50                                 <role>Developer</role>
51                         </roles>
52                 </developer>
53         </developers>
54         <dependencies>
55                 <dependency>
56                         <groupId>javax.servlet</groupId>
57                         <artifactId>servlet-api</artifactId>
58                         <scope>provided</scope>
59                 </dependency>
60         </dependencies>
61         <build>
62                 <plugins>
63                         <plugin>
64                                 <!-- Must put this in to turn on Signing, but Configuration itself is 
65                                         in Parent -->
66                                 <groupId>org.apache.maven.plugins</groupId>
67                                 <artifactId>maven-jarsigner-plugin</artifactId>
68                         </plugin>
69                         <plugin>
70                                 <groupId>org.apache.maven.plugins</groupId>
71                                 <artifactId>maven-jar-plugin</artifactId>
72                                 <configuration>
73                                         <archive>
74                                                 <manifest>
75                                                         <mainClass>org.onap.aaf.cadi.CmdLine</mainClass>
76                                                 </manifest>
77                                                 <manifestEntries>
78                                                         <Sealed>true</Sealed>
79                                                 </manifestEntries>
80                                         </archive>
81                                 </configuration>
82                                 <executions>
83                                         <execution>
84                                                 <id>test-jar</id>
85                                                 <phase>package</phase>
86                                                 <goals>
87                                                         <goal>test-jar</goal>
88                                                 </goals>
89                                         </execution>
90                                 </executions>
91                         </plugin>
92                 </plugins>
93         </build>
94
95 </project>