Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2021 Nordix Foundation. |
| 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-common</artifactId> |
| 34 | <name>${project.artifactId}</name> |
| 35 | <description>Common utilities and code for the TOSCA Control Loop system</description> |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 36 | |
Sirisha_Manchikanti | e90fade | 2021-10-27 08:24:48 +0100 | [diff] [blame] | 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.onap.policy.clamp</groupId> |
| 40 | <artifactId>policy-clamp-models</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | </dependencies> |
| 44 | |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 45 | <build> |
| 46 | <plugins> |
| 47 | <!-- Builds examples jar --> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-jar-plugin</artifactId> |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 51 | <executions> |
| 52 | <execution> |
| 53 | <goals> |
| 54 | <goal>test-jar</goal> |
| 55 | </goals> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 61 | </project> |