Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP policy |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2022 Bell Canada. All rights reserved. |
adheli.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2023-2024 Nordix Foundation. |
Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 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.common</groupId> |
| 29 | <artifactId>common-modules</artifactId> |
rameshiyer27 | 936d289 | 2024-07-12 09:07:19 +0000 | [diff] [blame^] | 30 | <version>3.0.1-SNAPSHOT</version> |
Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 31 | </parent> |
| 32 | |
| 33 | <artifactId>spring-utils</artifactId> |
| 34 | <name>spring-utils</name> |
adheli.tavares | 349b4ae | 2023-07-21 09:41:01 +0100 | [diff] [blame] | 35 | <description>This artifact contains the common spring related utility classes to be used by multiple policy framework components.</description> |
Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.onap.policy.common</groupId> |
| 40 | <artifactId>utils</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 43 | <dependency> |
| 44 | <groupId>org.springframework</groupId> |
| 45 | <artifactId>spring-web</artifactId> |
| 46 | </dependency> |
adheli.tavares | 7e934a6 | 2024-04-02 15:18:20 +0100 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>org.hibernate.orm</groupId> |
| 49 | <artifactId>hibernate-core</artifactId> |
| 50 | </dependency> |
Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 51 | </dependencies> |
| 52 | |
| 53 | </project> |