blob: e4273773e1b55e0326cefb76afaa8b2221bebd02 [file] [log] [blame]
Timoney, Dan (dt5972)fd23f3c2018-07-11 16:49:03 -04001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
8 <version>1.1.0-SNAPSHOT</version>
9 <relativePath/>
10 </parent>
11
12 <groupId>org.onap.ccsdk.features</groupId>
13 <artifactId>ccsdk-features</artifactId>
14 <version>0.3.0-SNAPSHOT</version>
15 <packaging>pom</packaging>
16
17 <name>ccsdk-features</name>
18 <description>CCSDK applications</description>
19 <url>https://wiki.onap.org</url>
20 <organization>
21 <name>ONAP</name>
22 </organization>
23
24 <modules>
25 </modules>
26
27 <scm>
28 <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
29 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
30 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
31 </scm>
32
33
34 <profiles>
35 <profile>
36 <id>blackduck</id>
37 <activation>
38 <property>
39 <name>blackduck-scan</name>
40 </property>
41 </activation>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>com.blackducksoftware.integration</groupId>
46 <artifactId>hub-maven-plugin</artifactId>
47 <version>1.4.0</version>
48 <inherited>false</inherited>
49 <configuration>
50 <hubProjectName>${project.name}</hubProjectName>
51 <outputDirectory>${project.basedir}</outputDirectory>
52 </configuration>
53 <executions>
54 <execution>
55 <id>create-bdio-file</id>
56 <phase>package</phase>
57 <goals>
58 <goal>createHubOutput</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 </plugins>
64
65
66
67 </build>
68
69 </profile>
70
71 </profiles>
72</project>