Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 4 | ================================================================================ |
Pamela Dragosh | acfe063 | 2018-08-28 09:57:31 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019 Nordix Foundation. |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 7 | Modifications Copyright (C) 2020 Bell Canada. |
Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
| 21 | --> |
| 22 | |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +0000 | [diff] [blame] | 23 | <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"> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 25 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 28 | <artifactId>drools-applications-common</artifactId> |
a.sreekumar | 97c994c | 2020-05-26 13:37:53 +0100 | [diff] [blame^] | 29 | <version>1.6.5-SNAPSHOT</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>feature-controlloop-utils</artifactId> |
| 33 | |
| 34 | <description> |
| 35 | Loadable PDP-D feature module to enable simulator usage in a non-junit |
| 36 | lab environments. In a pdp-d lab environment this capability can be |
| 37 | enabled with the "feature" mechanisms. |
| 38 | </description> |
| 39 | |
| 40 | <properties> |
| 41 | <maven.compiler.source>1.8</maven.compiler.source> |
| 42 | <maven.compiler.target>1.8</maven.compiler.target> |
| 43 | </properties> |
| 44 | |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <artifactId>maven-assembly-plugin</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 49 | <executions> |
| 50 | <execution> |
| 51 | <id>zipfile</id> |
| 52 | <goals> |
| 53 | <goal>single</goal> |
| 54 | </goals> |
| 55 | <phase>package</phase> |
| 56 | <configuration> |
| 57 | <attach>true</attach> |
| 58 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 59 | <descriptors> |
| 60 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 61 | </descriptors> |
| 62 | <appendAssemblyId>false</appendAssemblyId> |
| 63 | </configuration> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-dependency-plugin</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 71 | <executions> |
| 72 | <execution> |
| 73 | <id>copy-dependencies</id> |
| 74 | <goals> |
| 75 | <goal>copy-dependencies</goal> |
| 76 | </goals> |
| 77 | <phase>prepare-package</phase> |
| 78 | <configuration> |
| 79 | <transitive>false</transitive> |
| 80 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 81 | <overWriteReleases>false</overWriteReleases> |
| 82 | <overWriteSnapshots>true</overWriteSnapshots> |
| 83 | <overWriteIfNewer>true</overWriteIfNewer> |
| 84 | <useRepositoryLayout>false</useRepositoryLayout> |
| 85 | <addParentPoms>false</addParentPoms> |
| 86 | <copyPom>false</copyPom> |
| 87 | <includeScope>runtime</includeScope> |
| 88 | <excludeTransitive>true</excludeTransitive> |
| 89 | </configuration> |
| 90 | </execution> |
| 91 | </executions> |
| 92 | </plugin> |
| 93 | </plugins> |
| 94 | </build> |
| 95 | |
| 96 | <dependencies> |
| 97 | <dependency> |
| 98 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 99 | <artifactId>policy-management</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 100 | <version>${version.policy.drools-pdp}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 101 | <scope>provided</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 104 | <groupId>org.onap.policy.common</groupId> |
| 105 | <artifactId>policy-endpoints</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 106 | <version>${version.policy.common}</version> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 107 | <scope>provided</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 110 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 111 | <artifactId>simulators</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 112 | <version>${policy.models.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 115 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 116 | <artifactId>aai</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 117 | <version>${policy.models.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 120 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 121 | <artifactId>so</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 122 | <version>${policy.models.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 123 | </dependency> |
| 124 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 125 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Vidyashree Rama | b49dc8f | 2018-12-14 16:31:56 +0530 | [diff] [blame] | 126 | <artifactId>sdnc</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 127 | <version>${policy.models.version}</version> |
Vidyashree Rama | b49dc8f | 2018-12-14 16:31:56 +0530 | [diff] [blame] | 128 | </dependency> |
| 129 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 130 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 131 | <artifactId>rest</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 132 | <version>${policy.models.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 133 | </dependency> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 134 | </dependencies> |
Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 135 | </project> |