Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 4 | Copyright (C) 2021, 2024 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> |
rameshiyer27 | 211238e | 2024-11-19 17:26:19 +0000 | [diff] [blame] | 30 | <version>8.1.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> |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 39 | <groupId>org.onap.policy.models</groupId> |
| 40 | <artifactId>policy-models-errors</artifactId> |
| 41 | <version>${policy.models.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>jakarta.ws.rs</groupId> |
| 45 | <artifactId>jakarta.ws.rs-api</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.projectlombok</groupId> |
| 49 | <artifactId>lombok</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.springframework</groupId> |
| 53 | <artifactId>spring-core</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.springframework</groupId> |
| 57 | <artifactId>spring-context</artifactId> |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>jakarta.servlet</groupId> |
| 61 | <artifactId>jakarta.servlet-api</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.junit.jupiter</groupId> |
adheli.tavares | 6555f7c | 2024-11-04 11:33:12 +0000 | [diff] [blame] | 65 | <artifactId>junit-jupiter-api</artifactId> |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 66 | <scope>test</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.assertj</groupId> |
| 70 | <artifactId>assertj-core</artifactId> |
| 71 | <scope>test</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.mockito</groupId> |
| 75 | <artifactId>mockito-core</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
Sirisha_Manchikanti | e90fade | 2021-10-27 08:24:48 +0100 | [diff] [blame] | 78 | </dependencies> |
| 79 | |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 80 | <build> |
| 81 | <plugins> |
| 82 | <!-- Builds examples jar --> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-jar-plugin</artifactId> |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 86 | <executions> |
| 87 | <execution> |
| 88 | <goals> |
| 89 | <goal>test-jar</goal> |
| 90 | </goals> |
| 91 | </execution> |
| 92 | </executions> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 96 | </project> |