blob: 68bd7dfed965e41131e50eaba194e0a34bea9d17 [file] [log] [blame]
herbert959fe0a2020-03-10 18:37:27 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2018 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10 ~ ================================================================================
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 ~ ============LICENSE_END=======================================================
23 ~
24 -->
25
26<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">
27 <modelVersion>4.0.0</modelVersion>
28
29 <parent>
Ravi Pendurtya5331352020-07-29 12:42:41 +020030 <groupId>org.o-ran-sc.oam.features.parent</groupId>
herbert959fe0a2020-03-10 18:37:27 +010031 <artifactId>binding-parent</artifactId>
Ravi Pendurtya5331352020-07-29 12:42:41 +020032 <version>2.0.0-SNAPSHOT</version>
herbert959fe0a2020-03-10 18:37:27 +010033 <relativePath/>
34 </parent>
35
herbert2215cc52020-03-11 17:13:25 +010036 <groupId>org.o-ran-sc.oam.features.devicemanager</groupId>
37 <artifactId>devicemanager-xran-ru-fh-model</artifactId>
Ravi Pendurtya5331352020-07-29 12:42:41 +020038 <version>1.0.0-SNAPSHOT</version>
herbert959fe0a2020-03-10 18:37:27 +010039 <packaging>bundle</packaging>
40
herbert2215cc52020-03-11 17:13:25 +010041 <name>o-ran-sc-features :: ${project.artifactId}</name>
herbert959fe0a2020-03-10 18:37:27 +010042 <licenses>
43 <license>
44 <name>Apache License, Version 2.0</name>
45 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46 </license>
47 </licenses>
48
49 <properties>
50 <maven.javadoc.skip>true</maven.javadoc.skip>
51 </properties>
52
53 <dependencies>
54 </dependencies>
55
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.jacoco</groupId>
60 <artifactId>jacoco-maven-plugin</artifactId>
61 <configuration>
62 <excludes>
63 <exclude>**/gen/**</exclude>
64 <exclude>**/generated-sources/**</exclude>
65 <exclude>**/yang-gen-sal/**</exclude>
66 <exclude>**/pax/**</exclude>
67 </excludes>
68 </configuration>
69 </plugin>
70 </plugins>
71 </build>
herbert9c2b5fb2020-03-20 10:58:04 +010072
73 <repositories>
74 <repository>
75 <id>onap-public</id>
76 <url>https://nexus.onap.org/content/groups/public/</url>
77 <releases>
78 <enabled>true</enabled>
79 <updatePolicy>never</updatePolicy>
80 </releases>
81 <snapshots>
82 <enabled>true</enabled>
83 <updatePolicy>always</updatePolicy>
84 </snapshots>
85 </repository>
86 <repository>
87 <id>onap-staging</id>
88 <url>https://nexus.onap.org/content/groups/staging/</url>
89 <releases>
90 <enabled>true</enabled>
91 <updatePolicy>never</updatePolicy>
92 </releases>
93 <snapshots>
94 <enabled>true</enabled>
95 <updatePolicy>always</updatePolicy>
96 </snapshots>
97 </repository>
98 <repository>
99 <id>ecomp-release</id>
100 <name>onap-repository-releases</name>
101 <url>https://nexus.onap.org/content/repositories/releases/</url>
102 <releases>
103 <enabled>true</enabled>
104 <updatePolicy>never</updatePolicy>
105 </releases>
106 <snapshots>
107 <enabled>false</enabled>
108 </snapshots>
109 </repository>
110 <repository>
111 <id>ecomp-snapshot</id>
112 <name>onap-repository-snapshots</name>
113 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
114 <releases>
115 <enabled>false</enabled>
116 </releases>
117 <snapshots>
118 <enabled>true</enabled>
119 </snapshots>
120 </repository>
121 </repositories>
122
herbert959fe0a2020-03-10 18:37:27 +0100123</project>