blob: 7f5bf0a1f9131c57fc58d3f39ad6e49530bc6a2f [file] [log] [blame]
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05001<?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>
Timoney, Dan (dt5972)d761bb62019-04-30 14:46:09 -04008 <version>1.3.0-SNAPSHOT</version>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05009 <relativePath/>
10 </parent>
11
12 <groupId>org.onap.ccsdk.features</groupId>
13 <artifactId>ccsdk-features</artifactId>
Timoney, Dan (dt5972)d761bb62019-04-30 14:46:09 -040014 <version>0.5.0-SNAPSHOT</version>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050015 <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 <module>features</module>
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -040026<!-- <module>sdnr/wt</module> -->
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050027 <module>blueprints-processor</module>
Ubuntuf2bb4902019-02-20 19:24:25 +000028 <module>aafshiro</module>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050029 </modules>
30
31 <scm>
32 <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
33 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
34 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
35 </scm>
36
37 <profiles>
38 <profile>
39 <id>blackduck</id>
40 <activation>
41 <property>
42 <name>blackduck-scan</name>
43 </property>
44 </activation>
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>com.blackducksoftware.integration</groupId>
49 <artifactId>hub-maven-plugin</artifactId>
50 <version>1.4.0</version>
51 <inherited>false</inherited>
52 <configuration>
53 <hubProjectName>${project.name}</hubProjectName>
54 <outputDirectory>${project.basedir}</outputDirectory>
55 </configuration>
56 <executions>
57 <execution>
58 <id>create-bdio-file</id>
59 <phase>package</phase>
60 <goals>
61 <goal>createHubOutput</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 </profile>
69 </profiles>
70</project>