Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [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 | --> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 20 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +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"> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 22 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 24 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Jim Hahn | 89a8e32 | 2019-09-10 11:22:40 -0400 | [diff] [blame] | 28 | <version>1.6.0-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 29 | </parent> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 30 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 31 | <artifactId>feature-pooling-dmaap</artifactId> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 32 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 33 | <name>feature-pooling-dmaap</name> |
| 34 | <description>Endpoints</description> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 35 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 36 | <properties> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 37 | <jetty.version>9.3.20.v20170531</jetty.version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 38 | </properties> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 39 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <artifactId>maven-assembly-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <id>zipfile</id> |
| 47 | <goals> |
| 48 | <goal>single</goal> |
| 49 | </goals> |
| 50 | <phase>package</phase> |
| 51 | <configuration> |
| 52 | <attach>true</attach> |
| 53 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 54 | <descriptors> |
| 55 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 56 | </descriptors> |
| 57 | <appendAssemblyId>false</appendAssemblyId> |
| 58 | </configuration> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-dependency-plugin</artifactId> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <id>copy-dependencies</id> |
| 68 | <goals> |
| 69 | <goal>copy-dependencies</goal> |
| 70 | </goals> |
| 71 | <phase>prepare-package</phase> |
| 72 | <configuration> |
| 73 | <transitive>false</transitive> |
| 74 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 75 | <overWriteReleases>false</overWriteReleases> |
| 76 | <overWriteSnapshots>true</overWriteSnapshots> |
| 77 | <overWriteIfNewer>true</overWriteIfNewer> |
| 78 | <useRepositoryLayout>false</useRepositoryLayout> |
| 79 | <addParentPoms>false</addParentPoms> |
| 80 | <copyPom>false</copyPom> |
| 81 | <includeScope>runtime</includeScope> |
| 82 | <excludeTransitive>true</excludeTransitive> |
| 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 89 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 90 | <dependencies> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 91 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>com.att.nsa</groupId> |
| 94 | <artifactId>cambriaClient</artifactId> |
| 95 | <exclusions> |
| 96 | <exclusion> |
| 97 | <groupId>org.slf4j</groupId> |
| 98 | <artifactId>slf4j-log4j12</artifactId> |
| 99 | </exclusion> |
| 100 | <exclusion> |
| 101 | <groupId>com.att.nsa</groupId> |
| 102 | <artifactId>saClientLibrary</artifactId> |
| 103 | </exclusion> |
| 104 | </exclusions> |
| 105 | <scope>provided</scope> |
| 106 | </dependency> |
Jim Hahn | a69e3a9 | 2018-04-05 13:27:38 -0400 | [diff] [blame] | 107 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 108 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 109 | <groupId>ch.qos.logback</groupId> |
| 110 | <artifactId>logback-classic</artifactId> |
| 111 | <scope>provided</scope> |
| 112 | </dependency> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 113 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 114 | <dependency> |
| 115 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 116 | <artifactId>policy-core</artifactId> |
| 117 | <version>${project.version}</version> |
| 118 | <scope>provided</scope> |
| 119 | </dependency> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 120 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 121 | <dependency> |
| 122 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 123 | <artifactId>policy-management</artifactId> |
| 124 | <version>${project.version}</version> |
| 125 | <scope>provided</scope> |
| 126 | </dependency> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 127 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 128 | <dependency> |
| 129 | <groupId>junit</groupId> |
| 130 | <artifactId>junit</artifactId> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | |
| 134 | <dependency> |
| 135 | <groupId>org.onap.policy.common</groupId> |
| 136 | <artifactId>utils-test</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 137 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | |
| 141 | <dependency> |
| 142 | <groupId>org.mockito</groupId> |
| 143 | <artifactId>mockito-core</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 144 | <scope>test</scope> |
| 145 | </dependency> |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame] | 146 | |
| 147 | <dependency> |
| 148 | <groupId>org.assertj</groupId> |
| 149 | <artifactId>assertj-core</artifactId> |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame] | 150 | <scope>test</scope> |
| 151 | </dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 152 | </dependencies> |
Jim Hahn | a3fa1c6 | 2018-03-26 16:48:31 -0400 | [diff] [blame] | 153 | |
| 154 | </project> |