blob: 1dc744f49bb768db0568fcf28b2e8efa611984ca [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 -->
22
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 Timoney1bd16a42020-11-25 16:13:30 -050029 <version>2.1.0</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 Timoney1bd16a42020-11-25 16:13:30 -050035 <version>1.1.1-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>
48 <module>sdnr/northbound</module>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050049 <module>aafshiro</module>
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050050 <module>lib/rlock</module>
51 <module>lib/doorman</module>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050052 </modules>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050053
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050054 <scm>
55 <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
56 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
57 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
58 </scm>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050059
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050060 <profiles>
61 <profile>
62 <id>blackduck</id>
63 <activation>
64 <property>
65 <name>blackduck-scan</name>
66 </property>
67 </activation>
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>com.blackducksoftware.integration</groupId>
72 <artifactId>hub-maven-plugin</artifactId>
73 <version>1.4.0</version>
74 <inherited>false</inherited>
75 <configuration>
76 <hubProjectName>${project.name}</hubProjectName>
77 <outputDirectory>${project.basedir}</outputDirectory>
78 </configuration>
79 <executions>
80 <execution>
81 <id>create-bdio-file</id>
82 <phase>package</phase>
83 <goals>
84 <goal>createHubOutput</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </build>
91 </profile>
92 <profile>
93 <id>dependency-list</id>
94 <build>
95 <plugins>
96 <plugin>
97 <groupId>com.github.ferstl</groupId>
98 <artifactId>depgraph-maven-plugin</artifactId>
99 <executions>
100 <execution>
101 <phase>validate</phase>
102 <inherited>false</inherited>
103 <goals>
104 <goal>aggregate</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
109 <plugin>
110 <groupId>org.codehaus.mojo</groupId>
111 <artifactId>build-helper-maven-plugin</artifactId>
112 <executions>
113 <execution>
114 <id>attach-artifacts</id>
115 <phase>package</phase>
116 <inherited>false</inherited>
117 <goals>
118 <goal>attach-artifact</goal>
119 </goals>
120 <configuration>
121 <artifacts>
122 <artifact>
123 <file>${dependency-list.file}</file>
124 <type>txt</type>
125 <classifier>dependencies</classifier>
126 </artifact>
127 </artifacts>
128 </configuration>
129 </execution>
130 </executions>
131 </plugin>
132 </plugins>
133 </build>
134 </profile>
135 </profiles>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500136</project>