blob: b34ab17c600ea565db548d497bef82e032b9727d [file] [log] [blame]
Lathisha682c322020-07-30 15:52:12 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk oran
5 ~ ================================================================================
6 ~ Copyright (C) 2020 Nordix Foundation. All rights reserved.
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-->
Lathisha682c322020-07-30 15:52:12 +010022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onap.ccsdk.parent</groupId>
27 <artifactId>binding-parent</artifactId>
Dan Timoney8bb90c02023-11-08 10:17:19 -050028 <version>2.6.1</version>
Lathisha682c322020-07-30 15:52:12 +010029 <relativePath/>
30 </parent>
31
32 <groupId>org.onap.ccsdk.oran</groupId>
33 <artifactId>a1-adapter-provider</artifactId>
Dan Timoney4dd60c92023-11-09 13:14:59 -050034 <version>1.6.1-SNAPSHOT</version>
Lathisha682c322020-07-30 15:52:12 +010035 <packaging>bundle</packaging>
36
37 <name>ccsdk-oran :: ${project.artifactId}</name>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040038
Lathish923196e2020-08-20 09:59:39 +010039 <properties>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040040 <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
elinuxhenrik85d051e2020-09-10 12:46:50 +020041 <junit-jupiter-engine.version>5.6.0</junit-jupiter-engine.version>
42 <mockito-junit-jupiter.version>3.5.10</mockito-junit-jupiter.version>
Lathish923196e2020-08-20 09:59:39 +010043 </properties>
Lathisha682c322020-07-30 15:52:12 +010044
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040045
Lathisha682c322020-07-30 15:52:12 +010046 <dependencies>
47 <dependency>
48 <groupId>org.onap.ccsdk.oran</groupId>
49 <artifactId>a1-adapter-model</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
Dan Timoney02013b32021-02-04 16:36:06 -050053 <groupId>org.opendaylight.mdsal</groupId>
54 <artifactId>mdsal-binding-api</artifactId>
Lathisha682c322020-07-30 15:52:12 +010055 </dependency>
56 <dependency>
Dan Timoney02013b32021-02-04 16:36:06 -050057 <groupId>org.opendaylight.mdsal</groupId>
58 <artifactId>mdsal-binding-test-model</artifactId>
59 <scope>test</scope>
Lathisha682c322020-07-30 15:52:12 +010060 </dependency>
61 <dependency>
Dan Timoney02013b32021-02-04 16:36:06 -050062 <groupId>org.opendaylight.mdsal</groupId>
63 <artifactId>mdsal-binding-test-utils</artifactId>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.opendaylight.mdsal</groupId>
68 <artifactId>mdsal-binding-dom-adapter</artifactId>
69 <scope>test</scope>
Lathisha682c322020-07-30 15:52:12 +010070 </dependency>
71 <dependency>
72 <groupId>org.opendaylight.yangtools</groupId>
73 <artifactId>yang-data-impl</artifactId>
74 </dependency>
75 <dependency>
elinuxhenrik85d051e2020-09-10 12:46:50 +020076 <groupId>org.opendaylight.yangtools</groupId>
77 <artifactId>concepts</artifactId>
Lathisha682c322020-07-30 15:52:12 +010078 </dependency>
79 <dependency>
elinuxhenrik85d051e2020-09-10 12:46:50 +020080 <groupId>org.apache.httpcomponents</groupId>
81 <artifactId>httpclient</artifactId>
Lathisha682c322020-07-30 15:52:12 +010082 </dependency>
83 <dependency>
84 <groupId>org.onap.ccsdk.sli.core</groupId>
85 <artifactId>sli-common</artifactId>
Dan Timoney0f9477e2021-09-27 12:25:29 -040086 <version>${ccsdk.sli.version}</version>
Lathisha682c322020-07-30 15:52:12 +010087 <scope>provided</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.onap.ccsdk.sli.core</groupId>
91 <artifactId>sli-provider</artifactId>
Dan Timoney0f9477e2021-09-27 12:25:29 -040092 <version>${ccsdk.sli.version}</version>
Lathisha682c322020-07-30 15:52:12 +010093 <scope>provided</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.onap.ccsdk.sli.core</groupId>
97 <artifactId>utils-provider</artifactId>
Dan Timoney0f9477e2021-09-27 12:25:29 -040098 <version>${ccsdk.sli.version}</version>
99 <scope>provided</scope>
elinuxhenrik85d051e2020-09-10 12:46:50 +0200100 </dependency>
101 <dependency>
102 <groupId>junit</groupId>
103 <artifactId>junit</artifactId>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.mockito</groupId>
108 <artifactId>mockito-core</artifactId>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.junit.jupiter</groupId>
113 <artifactId>junit-jupiter-engine</artifactId>
114 <version>${junit-jupiter-engine.version}</version>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.mockito</groupId>
119 <artifactId>mockito-junit-jupiter</artifactId>
120 <version>${mockito-junit-jupiter.version}</version>
121 <scope>test</scope>
Lathisha682c322020-07-30 15:52:12 +0100122 </dependency>
Lathisha682c322020-07-30 15:52:12 +0100123 </dependencies>
124
125 <build>
126 <pluginManagement>
127 <plugins>
128 <plugin>
129 <groupId>org.eclipse.m2e</groupId>
130 <artifactId>lifecycle-mapping</artifactId>
131 <version>1.0.0</version>
132 <configuration>
133 <lifecycleMappingMetadata>
134 <pluginExecutions>
135 <pluginExecution>
136 <pluginExecutionFilter>
137 <groupId>org.codehaus.mojo</groupId>
138 <artifactId>properties-maven-plugin</artifactId>
139 <versionRange>[1.0.0,)</versionRange>
140 <goals>
141 <goal>set-system-properties</goal>
142 </goals>
143 </pluginExecutionFilter>
144 <action>
145 <execute/>
146 </action>
147 </pluginExecution>
148 </pluginExecutions>
149 </lifecycleMappingMetadata>
150 </configuration>
151 </plugin>
Lathish5d0ad5f2020-08-06 10:19:33 +0100152 <plugin>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-javadoc-plugin</artifactId>
155 <configuration>
156 <source>8</source>
157 </configuration>
158 </plugin>
Lathisha682c322020-07-30 15:52:12 +0100159 </plugins>
160 </pluginManagement>
Dan Timoney02013b32021-02-04 16:36:06 -0500161 <plugins>
162 <plugin>
163 <artifactId>maven-compiler-plugin</artifactId>
164 <configuration>
165 <forceJavacCompilerUse>true</forceJavacCompilerUse>
166 </configuration>
167 </plugin>
168 </plugins>
Lathisha682c322020-07-30 15:52:12 +0100169 </build>
170</project>