Instrumental | a20accc | 2018-03-26 13:49:56 -0700 | [diff] [blame] | 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> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame^] | 53 | <developer> |
| 54 | <name>Sai Gandham</name> |
| 55 | <email>sai.gandham@att.com</email> |
| 56 | <organization>ATT</organization> |
| 57 | <roles> |
| 58 | <role>Developer</role> |
| 59 | </roles> |
| 60 | </developer> |
Instrumental | a20accc | 2018-03-26 13:49:56 -0700 | [diff] [blame] | 61 | </developers> |
| 62 | <dependencies> |
| 63 | <dependency> |
| 64 | <groupId>javax.servlet</groupId> |
Instrumental | 10027f3 | 2018-03-26 14:07:37 -0700 | [diff] [blame] | 65 | <artifactId>servlet-api</artifactId> |
Instrumental | a20accc | 2018-03-26 13:49:56 -0700 | [diff] [blame] | 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | </dependencies> |
| 69 | <build> |
| 70 | <plugins> |
| 71 | <plugin> |
| 72 | <!-- Must put this in to turn on Signing, but Configuration itself is |
| 73 | in Parent --> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-jarsigner-plugin</artifactId> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.apache.maven.plugins</groupId> |
| 79 | <artifactId>maven-jar-plugin</artifactId> |
| 80 | <configuration> |
| 81 | <archive> |
| 82 | <manifest> |
| 83 | <mainClass>org.onap.aaf.cadi.CmdLine</mainClass> |
| 84 | </manifest> |
| 85 | <manifestEntries> |
| 86 | <Sealed>true</Sealed> |
| 87 | </manifestEntries> |
| 88 | </archive> |
| 89 | </configuration> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <id>test-jar</id> |
| 93 | <phase>package</phase> |
| 94 | <goals> |
| 95 | <goal>test-jar</goal> |
| 96 | </goals> |
| 97 | </execution> |
| 98 | </executions> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </build> |
| 102 | |
| 103 | </project> |