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> |
Pamela Dragosh | 7746509 | 2019-06-14 15:21:32 -0400 | [diff] [blame] | 27 | <version>1.4.3-SNAPSHOT</version> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 28 | </parent> |
| 29 | |
jhh | 6b3e0fc | 2019-04-01 07:29:36 -0500 | [diff] [blame] | 30 | <artifactId>feature-controlloop-usecases</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 31 | |
| 32 | <description> |
jhh | 6b3e0fc | 2019-04-01 07:29:36 -0500 | [diff] [blame] | 33 | Load Experimental Usecases Control Loop Use Cases Controller as a feature. |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 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 | <resources> |
| 43 | <resource> |
| 44 | <directory>src/main/feature</directory> |
| 45 | <filtering>true</filtering> |
| 46 | </resource> |
| 47 | </resources> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <artifactId>maven-assembly-plugin</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 51 | <executions> |
| 52 | <execution> |
| 53 | <id>zipfile</id> |
| 54 | <goals> |
| 55 | <goal>single</goal> |
| 56 | </goals> |
| 57 | <phase>package</phase> |
| 58 | <configuration> |
| 59 | <attach>true</attach> |
| 60 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 61 | <descriptors> |
| 62 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 63 | </descriptors> |
| 64 | <appendAssemblyId>false</appendAssemblyId> |
| 65 | </configuration> |
| 66 | </execution> |
| 67 | </executions> |
| 68 | </plugin> |
| 69 | |
| 70 | <plugin> |
| 71 | <groupId>org.apache.maven.plugins</groupId> |
| 72 | <artifactId>maven-dependency-plugin</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 73 | <executions> |
| 74 | <execution> |
| 75 | <id>copy-dependencies</id> |
| 76 | <goals> |
| 77 | <goal>copy-dependencies</goal> |
| 78 | </goals> |
| 79 | <phase>prepare-package</phase> |
| 80 | <configuration> |
| 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> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 89 | <excludeTransitive>true</excludeTransitive> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 90 | </configuration> |
| 91 | </execution> |
| 92 | </executions> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
| 96 | |
| 97 | <dependencies> |
| 98 | <dependency> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 99 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
jhh | 6b3e0fc | 2019-04-01 07:29:36 -0500 | [diff] [blame] | 100 | <artifactId>controller-usecases</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | <dependency> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 104 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 105 | <artifactId>policy-management</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 106 | <version>${version.policy.drools-pdp}</version> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 107 | <scope>provided</scope> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>junit</groupId> |
| 111 | <artifactId>junit</artifactId> |
Jorge Hernandez | 972fd70 | 2018-04-02 17:23:47 -0500 | [diff] [blame] | 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | </dependencies> |
| 115 | </project> |