Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 4 | ================================================================================ |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -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 | |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +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"> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 26 | <artifactId>common</artifactId> |
jhh | 569250e | 2020-05-29 16:05:41 -0500 | [diff] [blame] | 27 | <version>1.5.5-SNAPSHOT</version> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>feature-controlloop-amsterdam</artifactId> |
| 31 | |
| 32 | <description> |
| 33 | Load Amsterdam Control Loop Use Cases Controller as a feature. |
| 34 | </description> |
| 35 | |
| 36 | <properties> |
| 37 | <maven.compiler.source>1.8</maven.compiler.source> |
| 38 | <maven.compiler.target>1.8</maven.compiler.target> |
| 39 | </properties> |
| 40 | |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <artifactId>maven-assembly-plugin</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 45 | <executions> |
| 46 | <execution> |
| 47 | <id>zipfile</id> |
| 48 | <goals> |
| 49 | <goal>single</goal> |
| 50 | </goals> |
| 51 | <phase>package</phase> |
| 52 | <configuration> |
| 53 | <attach>true</attach> |
| 54 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 55 | <descriptors> |
| 56 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 57 | </descriptors> |
| 58 | <appendAssemblyId>false</appendAssemblyId> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-dependency-plugin</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -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 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 76 | <overWriteReleases>false</overWriteReleases> |
| 77 | <overWriteSnapshots>true</overWriteSnapshots> |
| 78 | <overWriteIfNewer>true</overWriteIfNewer> |
| 79 | <useRepositoryLayout>false</useRepositoryLayout> |
| 80 | <addParentPoms>false</addParentPoms> |
| 81 | <copyPom>false</copyPom> |
| 82 | <includeScope>runtime</includeScope> |
| 83 | <excludeTransitive>false</excludeTransitive> |
| 84 | </configuration> |
| 85 | </execution> |
| 86 | </executions> |
| 87 | </plugin> |
| 88 | </plugins> |
| 89 | </build> |
| 90 | |
| 91 | <dependencies> |
| 92 | <dependency> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 93 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 94 | <artifactId>policy-management</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 95 | <version>${version.policy.drools-pdp}</version> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 96 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>junit</groupId> |
| 100 | <artifactId>junit</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | </dependencies> |
| 104 | </project> |