blob: b1685c2f67b7c49f6dbfb7f6b48409c7d2552fac [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.
Pamela Dragosha6557b02017-02-14 19:49:32 -05006 ================================================================================
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
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060010
Pamela Dragosha6557b02017-02-14 19:49:32 -050011 http://www.apache.org/licenses/LICENSE-2.0
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060012
Pamela Dragosha6557b02017-02-14 19:49:32 -050013 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
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060021<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
24 <packaging>pom</packaging>
Pamela Dragosha6557b02017-02-14 19:49:32 -050025
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060026 <parent>
27 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
28 <artifactId>packages</artifactId>
liamfalloncd8592f2019-10-16 16:05:48 +010029 <version>1.5.4-SNAPSHOT</version>
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060030 </parent>
Pamela Dragosha6557b02017-02-14 19:49:32 -050031
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060032 <artifactId>basex-controlloop</artifactId>
Pamela Dragosha6557b02017-02-14 19:49:32 -050033
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060034 <name>basex-controlloop</name>
35 <description>Control Loop Drools Applications Base Extension Package</description>
Pamela Dragosha6557b02017-02-14 19:49:32 -050036
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060037 <build>
38
39 <plugins>
40
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-resources-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>copy-resources</id>
47 <phase>validate</phase>
48 <goals>
49 <goal>copy-resources</goal>
50 </goals>
51 <configuration>
52 <outputDirectory>${project.basedir}/target</outputDirectory>
53 <resources>
54 <resource>
55 <directory>src/main/resources</directory>
56 <includes>
Jorge Hernandez638480e2019-02-07 15:58:58 -060057 <include>controlloop.version</include>
Jorge Hernandezbdc051b2019-01-07 11:21:18 -060058 </includes>
59 <filtering>true</filtering>
60 </resource>
61 </resources>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66
67 <plugin>
68 <artifactId>maven-assembly-plugin</artifactId>
69 <executions>
70 <execution>
71 <goals>
72 <goal>single</goal>
73 </goals>
74 <phase>package</phase>
75 <configuration>
76 <descriptors>
77 <descriptor>src/assembly/zip.xml</descriptor>
78 </descriptors>
79 <appendAssemblyId>false</appendAssemblyId>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84
85 </plugins>
86
87 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050088
89</project>
90