blob: c261093891198f5acba60eb1897e6312f8608ca7 [file] [log] [blame]
Ram Krishna Verma01851b32022-02-14 14:17:14 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP policy
4 ================================================================================
5 Copyright (C) 2022 Bell Canada. All rights reserved.
adheli.tavares7e934a62024-04-02 15:18:20 +01006 Modifications Copyright (C) 2023-2024 Nordix Foundation.
Ram Krishna Verma01851b32022-02-14 14:17:14 -05007 ================================================================================
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>
rameshiyer27936d2892024-07-12 09:07:19 +000030 <version>3.0.1-SNAPSHOT</version>
Ram Krishna Verma01851b32022-02-14 14:17:14 -050031 </parent>
32
33 <artifactId>spring-utils</artifactId>
34 <name>spring-utils</name>
adheli.tavares349b4ae2023-07-21 09:41:01 +010035 <description>This artifact contains the common spring related utility classes to be used by multiple policy framework components.</description>
Ram Krishna Verma01851b32022-02-14 14:17:14 -050036
37 <dependencies>
38 <dependency>
39 <groupId>org.onap.policy.common</groupId>
40 <artifactId>utils</artifactId>
41 <version>${project.version}</version>
42 </dependency>
Ram Krishna Verma01851b32022-02-14 14:17:14 -050043 <dependency>
44 <groupId>org.springframework</groupId>
45 <artifactId>spring-web</artifactId>
46 </dependency>
adheli.tavares7e934a62024-04-02 15:18:20 +010047 <dependency>
48 <groupId>org.hibernate.orm</groupId>
49 <artifactId>hibernate-core</artifactId>
50 </dependency>
Ram Krishna Verma01851b32022-02-14 14:17:14 -050051 </dependencies>
52
53</project>