Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [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) 2021-2023 Nordix Foundation. |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [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 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <parent> |
| 28 | <groupId>org.onap.policy.clamp</groupId> |
| 29 | <artifactId>policy-clamp</artifactId> |
liamfallon | 8e6aa42 | 2023-05-25 09:41:35 +0100 | [diff] [blame] | 30 | <version>7.0.0-SNAPSHOT</version> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 31 | </parent> |
| 32 | |
| 33 | <artifactId>policy-clamp-models</artifactId> |
| 34 | <name>${project.artifactId}</name> |
FrancescoFioraEst | baf0a9f | 2021-10-28 10:19:09 +0100 | [diff] [blame] | 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
liamfallon | 619b668 | 2022-04-12 19:37:14 +0100 | [diff] [blame] | 38 | <groupId>org.onap.policy.clamp</groupId> |
| 39 | <artifactId>policy-clamp-examples</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
FrancescoFioraEst | baf0a9f | 2021-10-28 10:19:09 +0100 | [diff] [blame] | 42 | </dependencies> |
| 43 | |
adheli.tavares | cb96f23 | 2022-03-10 10:49:49 +0000 | [diff] [blame] | 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-remote-resources-plugin</artifactId> |
adheli.tavares | cb96f23 | 2022-03-10 10:49:49 +0000 | [diff] [blame] | 49 | <configuration> |
| 50 | <resourceBundles> |
| 51 | <resourceBundle>org.onap.policy.clamp:policy-clamp-examples:${project.version}</resourceBundle> |
| 52 | </resourceBundles> |
| 53 | </configuration> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <goals> |
| 57 | <goal>process</goal> |
| 58 | </goals> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 64 | </project> |