blob: bc955aa947906bd07b0d438abf57ebcd86102cd5 [file] [log] [blame]
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 AT&T Intellectual Property. 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 -->
Dan Timoneybccf4502024-08-08 15:57:35 -040022
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050023<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">
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050024 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050025
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050026 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Dan Timoneybccf4502024-08-08 15:57:35 -040029 <version>2.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050030 <relativePath/>
31 </parent>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050032
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050033 <groupId>org.onap.ccsdk.features</groupId>
34 <artifactId>ccsdk-features</artifactId>
Dan Timoneybccf4502024-08-08 15:57:35 -040035 <version>1.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050036 <packaging>pom</packaging>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050037
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050038 <name>ccsdk-features</name>
39 <description>CCSDK applications</description>
40 <url>https://wiki.onap.org</url>
41 <organization>
42 <name>ONAP</name>
43 </organization>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050044
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050045 <modules>
46 <module>features</module>
47 <module>sdnr/wt</module>
Ravi Pendurtydfd91572023-12-07 22:45:28 +053048 <module>sdnr/wt-odlux</module>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050049 <module>sdnr/northbound</module>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050050 <module>aafshiro</module>
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050051 <module>lib/rlock</module>
52 <module>lib/doorman</module>
Singal, Kapil (ks220y)c8b3f592021-05-10 13:48:00 -040053 <module>lib/network-prioritization</module>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050054 </modules>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050055
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050056 <scm>
57 <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
58 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
59 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
60 </scm>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050061
Singal, Kapil (ks220y)09753772021-02-09 13:06:58 -050062 <build>
63 <pluginManagement>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-compiler-plugin</artifactId>
68 <version>${maven-compiler-plugin.version}</version>
69 <configuration>
70 <release>${java.version}</release>
71 <!--explicitly remove source and target-->
72 <source combine.self="override"/>
73 <target combine.self="override"/>
74 </configuration>
75 </plugin>
76 </plugins>
77 </pluginManagement>
78 </build>
79
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050080 <profiles>
81 <profile>
82 <id>blackduck</id>
83 <activation>
84 <property>
85 <name>blackduck-scan</name>
86 </property>
87 </activation>
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>com.blackducksoftware.integration</groupId>
92 <artifactId>hub-maven-plugin</artifactId>
93 <version>1.4.0</version>
94 <inherited>false</inherited>
95 <configuration>
96 <hubProjectName>${project.name}</hubProjectName>
97 <outputDirectory>${project.basedir}</outputDirectory>
98 </configuration>
99 <executions>
100 <execution>
101 <id>create-bdio-file</id>
102 <phase>package</phase>
103 <goals>
104 <goal>createHubOutput</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
109 </plugins>
110 </build>
111 </profile>
112 <profile>
113 <id>dependency-list</id>
114 <build>
115 <plugins>
116 <plugin>
117 <groupId>com.github.ferstl</groupId>
118 <artifactId>depgraph-maven-plugin</artifactId>
119 <executions>
120 <execution>
121 <phase>validate</phase>
122 <inherited>false</inherited>
123 <goals>
124 <goal>aggregate</goal>
125 </goals>
126 </execution>
127 </executions>
128 </plugin>
129 <plugin>
130 <groupId>org.codehaus.mojo</groupId>
131 <artifactId>build-helper-maven-plugin</artifactId>
132 <executions>
133 <execution>
134 <id>attach-artifacts</id>
135 <phase>package</phase>
136 <inherited>false</inherited>
137 <goals>
138 <goal>attach-artifact</goal>
139 </goals>
140 <configuration>
141 <artifacts>
142 <artifact>
143 <file>${dependency-list.file}</file>
144 <type>txt</type>
145 <classifier>dependencies</classifier>
146 </artifact>
147 </artifacts>
148 </configuration>
149 </execution>
150 </executions>
151 </plugin>
152 </plugins>
153 </build>
154 </profile>
155 </profiles>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500156</project>