blob: eb9570edb444a27c3e1179c2bee5d8d2173b1e18 [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
Jorge Hernandezbdc051b2019-01-07 11:21:18 -06003 ONAP
Pamela Dragosha6557b02017-02-14 19:49:32 -05004 ================================================================================
Jorge Hernandezbdc051b2019-01-07 11:21:18 -06005 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -05006 Modifications Copyright (C) 2020 Bell Canada.
Pamela Dragosha6557b02017-02-14 19:49:32 -05007 ================================================================================
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 Hernandezbdc051b2019-01-07 11:21:18 -060011
Pamela Dragosha6557b02017-02-14 19:49:32 -050012 http://www.apache.org/licenses/LICENSE-2.0
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060013
Pamela Dragosha6557b02017-02-14 19:49:32 -050014 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 Hernandezbdc051b2019-01-07 11:21:18 -060022<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 Dragosha6557b02017-02-14 19:49:32 -050026
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060027 <parent>
28 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -050029 <artifactId>drools-applications-packages</artifactId>
liamfallona5d2e2f2022-05-03 17:22:25 +010030 <version>1.11.0-SNAPSHOT</version>
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060031 </parent>
Pamela Dragosha6557b02017-02-14 19:49:32 -050032
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060033 <artifactId>basex-controlloop</artifactId>
Pamela Dragosha6557b02017-02-14 19:49:32 -050034
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060035 <name>basex-controlloop</name>
36 <description>Control Loop Drools Applications Base Extension Package</description>
Pamela Dragosha6557b02017-02-14 19:49:32 -050037
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060038 <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 Hernandez638480e2019-02-07 15:58:58 -060058 <include>controlloop.version</include>
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060059 </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 Dragosha6557b02017-02-14 19:49:32 -050089
90</project>
91