Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 1 | <?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) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 4 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | bc0f2d7 | 2020-01-23 14:42:42 -0500 | [diff] [blame] | 8 | <version>1.5.1</version> |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 11 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.features</groupId> |
| 13 | <artifactId>ccsdk-features</artifactId> |
| 14 | <version>0.7.0-SNAPSHOT</version> |
| 15 | <packaging>pom</packaging> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 16 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 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> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 23 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 24 | <modules> |
| 25 | <module>features</module> |
| 26 | <module>sdnr/wt</module> |
| 27 | <module>sdnr/northbound</module> |
| 28 | <module>blueprints-processor</module> |
| 29 | <module>aafshiro</module> |
| 30 | </modules> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 31 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 32 | <scm> |
| 33 | <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection> |
| 34 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection> |
| 35 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url> |
| 36 | </scm> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 37 | |
Singal, Kapil (ks220y) | 05e4277 | 2019-12-12 11:20:58 -0500 | [diff] [blame] | 38 | <profiles> |
| 39 | <profile> |
| 40 | <id>blackduck</id> |
| 41 | <activation> |
| 42 | <property> |
| 43 | <name>blackduck-scan</name> |
| 44 | </property> |
| 45 | </activation> |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>com.blackducksoftware.integration</groupId> |
| 50 | <artifactId>hub-maven-plugin</artifactId> |
| 51 | <version>1.4.0</version> |
| 52 | <inherited>false</inherited> |
| 53 | <configuration> |
| 54 | <hubProjectName>${project.name}</hubProjectName> |
| 55 | <outputDirectory>${project.basedir}</outputDirectory> |
| 56 | </configuration> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <id>create-bdio-file</id> |
| 60 | <phase>package</phase> |
| 61 | <goals> |
| 62 | <goal>createHubOutput</goal> |
| 63 | </goals> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | </plugins> |
| 68 | </build> |
| 69 | </profile> |
| 70 | <profile> |
| 71 | <id>dependency-list</id> |
| 72 | <build> |
| 73 | <plugins> |
| 74 | <plugin> |
| 75 | <groupId>com.github.ferstl</groupId> |
| 76 | <artifactId>depgraph-maven-plugin</artifactId> |
| 77 | <executions> |
| 78 | <execution> |
| 79 | <phase>validate</phase> |
| 80 | <inherited>false</inherited> |
| 81 | <goals> |
| 82 | <goal>aggregate</goal> |
| 83 | </goals> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.codehaus.mojo</groupId> |
| 89 | <artifactId>build-helper-maven-plugin</artifactId> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <id>attach-artifacts</id> |
| 93 | <phase>package</phase> |
| 94 | <inherited>false</inherited> |
| 95 | <goals> |
| 96 | <goal>attach-artifact</goal> |
| 97 | </goals> |
| 98 | <configuration> |
| 99 | <artifacts> |
| 100 | <artifact> |
| 101 | <file>${dependency-list.file}</file> |
| 102 | <type>txt</type> |
| 103 | <classifier>dependencies</classifier> |
| 104 | </artifact> |
| 105 | </artifacts> |
| 106 | </configuration> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | </plugin> |
| 110 | </plugins> |
| 111 | </build> |
| 112 | </profile> |
| 113 | </profiles> |
Timoney, Dan (dt5972) | 4a46ddd | 2019-01-08 14:20:28 -0500 | [diff] [blame] | 114 | </project> |