blob: 81be40aed577ba9ba726e57760050875d32d5357 [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">
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05003 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05004
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -05008 <version>1.5.2-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -05009 <relativePath/>
10 </parent>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050011
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050012 <groupId>org.onap.ccsdk.features</groupId>
13 <artifactId>ccsdk-features</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050014 <version>0.7.1-SNAPSHOT</version>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050015 <packaging>pom</packaging>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050016
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050017 <name>ccsdk-features</name>
18 <description>CCSDK applications</description>
19 <url>https://wiki.onap.org</url>
20 <organization>
21 <name>ONAP</name>
22 </organization>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050023
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050024 <modules>
25 <module>features</module>
26 <module>sdnr/wt</module>
27 <module>sdnr/northbound</module>
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050028 <module>aafshiro</module>
29 </modules>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050030
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050031 <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>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050036
Singal, Kapil (ks220y)05e42772019-12-12 11:20:58 -050037 <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 <profile>
70 <id>dependency-list</id>
71 <build>
72 <plugins>
73 <plugin>
74 <groupId>com.github.ferstl</groupId>
75 <artifactId>depgraph-maven-plugin</artifactId>
76 <executions>
77 <execution>
78 <phase>validate</phase>
79 <inherited>false</inherited>
80 <goals>
81 <goal>aggregate</goal>
82 </goals>
83 </execution>
84 </executions>
85 </plugin>
86 <plugin>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>build-helper-maven-plugin</artifactId>
89 <executions>
90 <execution>
91 <id>attach-artifacts</id>
92 <phase>package</phase>
93 <inherited>false</inherited>
94 <goals>
95 <goal>attach-artifact</goal>
96 </goals>
97 <configuration>
98 <artifacts>
99 <artifact>
100 <file>${dependency-list.file}</file>
101 <type>txt</type>
102 <classifier>dependencies</classifier>
103 </artifact>
104 </artifacts>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
109 </plugins>
110 </build>
111 </profile>
112 </profiles>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500113</project>