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 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 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> |
Pamela Dragosh | 998f0b3 | 2017-03-10 14:31:17 -0500 | [diff] [blame] | 29 | <version>1.1.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> |
| 46 | <version>2.6</version> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <id>zipfile</id> |
| 50 | <goals> |
| 51 | <goal>single</goal> |
| 52 | </goals> |
| 53 | <phase>package</phase> |
| 54 | <configuration> |
| 55 | <attach>true</attach> |
| 56 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 57 | <descriptors> |
| 58 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 59 | </descriptors> |
| 60 | <appendAssemblyId>false</appendAssemblyId> |
| 61 | </configuration> |
| 62 | </execution> |
| 63 | </executions> |
| 64 | </plugin> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-dependency-plugin</artifactId> |
| 68 | <version>2.8</version> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <id>copy-dependencies</id> |
| 72 | <goals> |
| 73 | <goal>copy-dependencies</goal> |
| 74 | </goals> |
| 75 | <phase>prepare-package</phase> |
| 76 | <configuration> |
| 77 | <transitive>false</transitive> |
| 78 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 79 | <overWriteReleases>false</overWriteReleases> |
| 80 | <overWriteSnapshots>true</overWriteSnapshots> |
| 81 | <overWriteIfNewer>true</overWriteIfNewer> |
| 82 | <useRepositoryLayout>false</useRepositoryLayout> |
| 83 | <addParentPoms>false</addParentPoms> |
| 84 | <copyPom>false</copyPom> |
Jorge Hernandez | ae4a935 | 2017-07-18 01:06:39 -0500 | [diff] [blame] | 85 | <includeScope>runtime</includeScope> |
Jorge Hernandez | ae4a935 | 2017-07-18 01:06:39 -0500 | [diff] [blame] | 86 | <excludeTransitive>true</excludeTransitive> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 87 | </configuration> |
| 88 | </execution> |
| 89 | </executions> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </build> |
| 93 | |
| 94 | <dependencies> |
Jorge Hernandez | 881c32e | 2017-05-25 16:44:15 -0500 | [diff] [blame] | 95 | <dependency> |
Magnusen, Drew (dm741q) | 0ca3ecd | 2017-09-12 10:45:58 -0500 | [diff] [blame^] | 96 | <groupId>io.swagger</groupId> |
| 97 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 98 | <scope>provided</scope> |
Jorge Hernandez | 8f61e18 | 2017-06-22 17:17:28 -0500 | [diff] [blame] | 99 | </dependency> |
Magnusen, Drew (dm741q) | 0ca3ecd | 2017-09-12 10:45:58 -0500 | [diff] [blame^] | 100 | <dependency> |
| 101 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 102 | <artifactId>policy-core</artifactId> |
| 103 | <version>${project.version}</version> |
| 104 | <scope>provided</scope> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 108 | <artifactId>policy-endpoints</artifactId> |
| 109 | <version>${project.version}</version> |
| 110 | <scope>provided</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 114 | <artifactId>policy-management</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>junit</groupId> |
| 120 | <artifactId>junit</artifactId> |
| 121 | <scope>test</scope> |
| 122 | </dependency> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 123 | </dependencies> |
| 124 | |
| 125 | </project> |