Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 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" |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 24 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 27 | <artifactId>common</artifactId> |
liamfallon | ca57d97 | 2018-05-21 15:35:55 +0100 | [diff] [blame] | 28 | <version>1.2.3-SNAPSHOT</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>feature-controlloop-utils</artifactId> |
| 32 | |
| 33 | <description> |
| 34 | Loadable PDP-D feature module to enable simulator usage in a non-junit |
| 35 | lab environments. In a pdp-d lab environment this capability can be |
| 36 | enabled with the "feature" mechanisms. |
| 37 | </description> |
| 38 | |
| 39 | <properties> |
| 40 | <maven.compiler.source>1.8</maven.compiler.source> |
| 41 | <maven.compiler.target>1.8</maven.compiler.target> |
| 42 | </properties> |
| 43 | |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <artifactId>maven-assembly-plugin</artifactId> |
| 48 | <version>2.6</version> |
| 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> |
| 71 | <version>2.8</version> |
| 72 | <executions> |
| 73 | <execution> |
| 74 | <id>copy-dependencies</id> |
| 75 | <goals> |
| 76 | <goal>copy-dependencies</goal> |
| 77 | </goals> |
| 78 | <phase>prepare-package</phase> |
| 79 | <configuration> |
| 80 | <transitive>false</transitive> |
| 81 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 82 | <overWriteReleases>false</overWriteReleases> |
| 83 | <overWriteSnapshots>true</overWriteSnapshots> |
| 84 | <overWriteIfNewer>true</overWriteIfNewer> |
| 85 | <useRepositoryLayout>false</useRepositoryLayout> |
| 86 | <addParentPoms>false</addParentPoms> |
| 87 | <copyPom>false</copyPom> |
| 88 | <includeScope>runtime</includeScope> |
| 89 | <excludeTransitive>true</excludeTransitive> |
| 90 | </configuration> |
| 91 | </execution> |
| 92 | </executions> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
| 96 | |
| 97 | <dependencies> |
| 98 | <dependency> |
| 99 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 100 | <artifactId>policy-management</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 106 | <artifactId>policy-endpoints</artifactId> |
| 107 | <version>${project.version}</version> |
| 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 112 | <artifactId>simulators</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 117 | <artifactId>aai</artifactId> |
| 118 | <version>${project.version}</version> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 122 | <artifactId>so</artifactId> |
| 123 | <version>${project.version}</version> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 127 | <artifactId>rest</artifactId> |
| 128 | <version>${project.version}</version> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>junit</groupId> |
| 132 | <artifactId>junit</artifactId> |
| 133 | <version>4.12</version> |
| 134 | <scope>test</scope> |
| 135 | </dependency> |
| 136 | </dependencies> |
Jorge Hernandez | b918b69 | 2017-09-20 23:12:27 -0500 | [diff] [blame] | 137 | </project> |