adheli.tavares | 1ae8697 | 2022-02-25 15:06:49 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
liamfallon | 0e405f3 | 2023-02-17 19:15:16 +0000 | [diff] [blame] | 4 | Copyright (C) 2022-2023 Nordix Foundation. |
adheli.tavares | 1ae8697 | 2022-02-25 15:06:49 +0000 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.clamp</groupId> |
| 28 | <artifactId>policy-clamp</artifactId> |
adheli.tavares | 4407ea6 | 2023-08-11 15:10:44 +0100 | [diff] [blame] | 29 | <version>7.0.1-SNAPSHOT</version> |
adheli.tavares | 1ae8697 | 2022-02-25 15:06:49 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <modelVersion>4.0.0</modelVersion> |
| 33 | |
| 34 | <artifactId>policy-clamp-examples</artifactId> |
| 35 | <name>${project.artifactId}</name> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-remote-resources-plugin</artifactId> |
adheli.tavares | 1ae8697 | 2022-02-25 15:06:49 +0000 | [diff] [blame] | 42 | <executions> |
| 43 | <execution> |
| 44 | <goals> |
| 45 | <goal>bundle</goal> |
| 46 | </goals> |
| 47 | </execution> |
| 48 | </executions> |
| 49 | <configuration> |
| 50 | <includes> |
| 51 | <include>**/*.yml</include> |
| 52 | <include>**/*.yaml</include> |
| 53 | </includes> |
| 54 | </configuration> |
| 55 | </plugin> |
| 56 | </plugins> |
| 57 | </build> |
| 58 | |
| 59 | </project> |