ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | 4171256 | 2019-11-01 11:47:21 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2019 Nordix Foundation. |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
liamfallon | 3aa7cbe | 2018-10-31 16:35:54 +0000 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.apex-pdp.examples</groupId> |
| 25 | <artifactId>examples</artifactId> |
liamfallon | 40dc08d | 2021-03-12 09:23:56 +0000 | [diff] [blame^] | 26 | <version>2.6.0-SNAPSHOT</version> |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>examples-servlet</artifactId> |
| 30 | <packaging>war</packaging> |
| 31 | <name>${project.artifactId}</name> |
| 32 | <description>Specific code for the APEX Servlet Example</description> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>javax.servlet</groupId> |
| 37 | <artifactId>javax.servlet-api</artifactId> |
| 38 | </dependency> |
| 39 | <dependency> |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 40 | <groupId>org.onap.policy.apex-pdp.services</groupId> |
| 41 | <artifactId>services-engine</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId> |
| 46 | <artifactId>plugins-event-carrier-restserver</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 51 | <artifactId>plugins-executor-javascript</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
ramverma | 9e318f2 | 2018-07-30 19:13:47 +0100 | [diff] [blame] | 55 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
| 56 | <artifactId>integration-common</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-war-plugin</artifactId> |
| 66 | <configuration> |
| 67 | <warSourceDirectory>src/main/resources/webapp</warSourceDirectory> |
| 68 | </configuration> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <phase>prepare-package</phase> |
| 72 | <goals> |
| 73 | <goal>war</goal> |
| 74 | </goals> |
| 75 | </execution> |
| 76 | </executions> |
| 77 | </plugin> |
| 78 | </plugins> |
| 79 | </build> |
a.sreekumar | f1f9a30 | 2020-03-25 23:01:06 +0000 | [diff] [blame] | 80 | </project> |