Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 3 | ONAP |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 4 | ================================================================================ |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 5 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 Bell Canada. |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 11 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 13 | |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <packaging>pom</packaging> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 26 | |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId> |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 29 | <artifactId>drools-applications-packages</artifactId> |
liamfallon | a5d2e2f | 2022-05-03 17:22:25 +0100 | [diff] [blame^] | 30 | <version>1.11.0-SNAPSHOT</version> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 31 | </parent> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 32 | |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 33 | <artifactId>basex-controlloop</artifactId> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 34 | |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 35 | <name>basex-controlloop</name> |
| 36 | <description>Control Loop Drools Applications Base Extension Package</description> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 37 | |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 38 | <build> |
| 39 | |
| 40 | <plugins> |
| 41 | |
| 42 | <plugin> |
| 43 | <groupId>org.apache.maven.plugins</groupId> |
| 44 | <artifactId>maven-resources-plugin</artifactId> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <id>copy-resources</id> |
| 48 | <phase>validate</phase> |
| 49 | <goals> |
| 50 | <goal>copy-resources</goal> |
| 51 | </goals> |
| 52 | <configuration> |
| 53 | <outputDirectory>${project.basedir}/target</outputDirectory> |
| 54 | <resources> |
| 55 | <resource> |
| 56 | <directory>src/main/resources</directory> |
| 57 | <includes> |
Jorge Hernandez | 638480e | 2019-02-07 15:58:58 -0600 | [diff] [blame] | 58 | <include>controlloop.version</include> |
Jorge Hernandez | bdc051b | 2019-01-07 11:21:18 -0600 | [diff] [blame] | 59 | </includes> |
| 60 | <filtering>true</filtering> |
| 61 | </resource> |
| 62 | </resources> |
| 63 | </configuration> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | |
| 68 | <plugin> |
| 69 | <artifactId>maven-assembly-plugin</artifactId> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <goals> |
| 73 | <goal>single</goal> |
| 74 | </goals> |
| 75 | <phase>package</phase> |
| 76 | <configuration> |
| 77 | <descriptors> |
| 78 | <descriptor>src/assembly/zip.xml</descriptor> |
| 79 | </descriptors> |
| 80 | <appendAssemblyId>false</appendAssemblyId> |
| 81 | </configuration> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | |
| 86 | </plugins> |
| 87 | |
| 88 | </build> |
Pamela Dragosh | a6557b0 | 2017-02-14 19:49:32 -0500 | [diff] [blame] | 89 | |
| 90 | </project> |
| 91 | |