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> |
saul.gill | 0156559 | 2024-05-20 11:09:09 +0100 | [diff] [blame^] | 30 | <version>8.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> |
adheli.tavares | 32bc412 | 2024-04-02 15:12:31 +0100 | [diff] [blame] | 43 | <dependency> |
| 44 | <groupId>org.onap.policy.models</groupId> |
| 45 | <artifactId>policy-models-errors</artifactId> |
| 46 | <version>${policy.models.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>jakarta.ws.rs</groupId> |
| 50 | <artifactId>jakarta.ws.rs-api</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.projectlombok</groupId> |
| 54 | <artifactId>lombok</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.springframework</groupId> |
| 58 | <artifactId>spring-core</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.springframework</groupId> |
| 62 | <artifactId>spring-context</artifactId> |
| 63 | <version>${version.spring}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>jakarta.servlet</groupId> |
| 67 | <artifactId>jakarta.servlet-api</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.junit.jupiter</groupId> |
| 71 | <artifactId>junit-jupiter</artifactId> |
| 72 | <version>${version.jupiter}</version> |
| 73 | <scope>test</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.assertj</groupId> |
| 77 | <artifactId>assertj-core</artifactId> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.mockito</groupId> |
| 82 | <artifactId>mockito-core</artifactId> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
Sirisha_Manchikanti | e90fade | 2021-10-27 08:24:48 +0100 | [diff] [blame] | 85 | </dependencies> |
| 86 | |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 87 | <build> |
| 88 | <plugins> |
| 89 | <!-- Builds examples jar --> |
| 90 | <plugin> |
| 91 | <groupId>org.apache.maven.plugins</groupId> |
| 92 | <artifactId>maven-jar-plugin</artifactId> |
waynedunican | bb3e677 | 2021-06-15 12:40:46 +0100 | [diff] [blame] | 93 | <executions> |
| 94 | <execution> |
| 95 | <goals> |
| 96 | <goal>test-jar</goal> |
| 97 | </goals> |
| 98 | </execution> |
| 99 | </executions> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
Sirisha_Manchikanti | f83411a | 2021-05-07 15:17:52 +0100 | [diff] [blame] | 103 | </project> |