Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Drools PDP |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 4 | ================================================================================ |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 27 | <groupId>org.onap.policy.drools-pdp</groupId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 28 | <artifactId>drools-pdp</artifactId> |
liamfallon | b706707 | 2018-06-05 16:22:44 +0100 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
Jorge Hernandez | 564f818 | 2017-06-30 13:29:03 -0500 | [diff] [blame] | 32 | <artifactId>feature-healthcheck</artifactId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 33 | |
Jorge Hernandez | 564f818 | 2017-06-30 13:29:03 -0500 | [diff] [blame] | 34 | <name>feature-healthcheck</name> |
Jorge Hernandez | 8f61e18 | 2017-06-22 17:17:28 -0500 | [diff] [blame] | 35 | <description>Loadable module that performs remote system healthchecks</description> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 36 | |
| 37 | <properties> |
| 38 | <maven.compiler.source>1.8</maven.compiler.source> |
| 39 | <maven.compiler.target>1.8</maven.compiler.target> |
| 40 | </properties> |
| 41 | |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <artifactId>maven-assembly-plugin</artifactId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 46 | <executions> |
| 47 | <execution> |
| 48 | <id>zipfile</id> |
| 49 | <goals> |
| 50 | <goal>single</goal> |
| 51 | </goals> |
| 52 | <phase>package</phase> |
| 53 | <configuration> |
| 54 | <attach>true</attach> |
| 55 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 56 | <descriptors> |
| 57 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 58 | </descriptors> |
| 59 | <appendAssemblyId>false</appendAssemblyId> |
| 60 | </configuration> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-dependency-plugin</artifactId> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 67 | <executions> |
| 68 | <execution> |
| 69 | <id>copy-dependencies</id> |
| 70 | <goals> |
| 71 | <goal>copy-dependencies</goal> |
| 72 | </goals> |
| 73 | <phase>prepare-package</phase> |
| 74 | <configuration> |
| 75 | <transitive>false</transitive> |
| 76 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 77 | <overWriteReleases>false</overWriteReleases> |
| 78 | <overWriteSnapshots>true</overWriteSnapshots> |
| 79 | <overWriteIfNewer>true</overWriteIfNewer> |
| 80 | <useRepositoryLayout>false</useRepositoryLayout> |
| 81 | <addParentPoms>false</addParentPoms> |
| 82 | <copyPom>false</copyPom> |
Jorge Hernandez | ae4a935 | 2017-07-18 01:06:39 -0500 | [diff] [blame] | 83 | <includeScope>runtime</includeScope> |
Jorge Hernandez | ae4a935 | 2017-07-18 01:06:39 -0500 | [diff] [blame] | 84 | <excludeTransitive>true</excludeTransitive> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 85 | </configuration> |
| 86 | </execution> |
| 87 | </executions> |
| 88 | </plugin> |
| 89 | </plugins> |
| 90 | </build> |
| 91 | |
| 92 | <dependencies> |
Jorge Hernandez | 881c32e | 2017-05-25 16:44:15 -0500 | [diff] [blame] | 93 | <dependency> |
Magnusen, Drew (dm741q) | 0ca3ecd | 2017-09-12 10:45:58 -0500 | [diff] [blame] | 94 | <groupId>io.swagger</groupId> |
| 95 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 96 | <scope>provided</scope> |
Jorge Hernandez | 8f61e18 | 2017-06-22 17:17:28 -0500 | [diff] [blame] | 97 | </dependency> |
Magnusen, Drew (dm741q) | 0ca3ecd | 2017-09-12 10:45:58 -0500 | [diff] [blame] | 98 | <dependency> |
| 99 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 100 | <artifactId>policy-core</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
mmis | 64f53ef | 2018-07-19 13:21:08 +0100 | [diff] [blame] | 105 | <groupId>org.onap.policy.common</groupId> |
Magnusen, Drew (dm741q) | 0ca3ecd | 2017-09-12 10:45:58 -0500 | [diff] [blame] | 106 | <artifactId>policy-endpoints</artifactId> |
| 107 | <version>${project.version}</version> |
| 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 112 | <artifactId>policy-management</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | <scope>provided</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>junit</groupId> |
| 118 | <artifactId>junit</artifactId> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 121 | </dependencies> |
| 122 | |
| 123 | </project> |