Timoney, Dan (dt5972) | 6031552 | 2018-07-11 15:52:33 -0400 | [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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | 71ed2c9 | 2018-10-25 10:34:51 -0400 | [diff] [blame] | 8 | <version>1.2.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 6031552 | 2018-07-11 15:52:33 -0400 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.apps</groupId> |
| 13 | <artifactId>ccsdk-apps</artifactId> |
Timoney, Dan (dt5972) | 71ed2c9 | 2018-10-25 10:34:51 -0400 | [diff] [blame] | 14 | <version>0.4.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 6031552 | 2018-07-11 15:52:33 -0400 | [diff] [blame] | 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <name>ccsdk-apps</name> |
| 18 | <description>CCSDK applications</description> |
| 19 | <url>https://wiki.onap.org</url> |
| 20 | <organization> |
| 21 | <name>ONAP</name> |
| 22 | </organization> |
| 23 | |
| 24 | <modules> |
Muthuramalingam, Brinda Santh(bs2796) | 594b5e1 | 2018-09-04 20:24:35 +0000 | [diff] [blame] | 25 | <module>components</module> |
BT2983 | 3db41ee | 2018-08-01 20:09:20 -0600 | [diff] [blame] | 26 | <module>ms</module> |
Timoney, Dan (dt5972) | 6031552 | 2018-07-11 15:52:33 -0400 | [diff] [blame] | 27 | </modules> |
| 28 | |
| 29 | <scm> |
| 30 | <connection>scm:git:ssh://git@${onap.git.host}/apps.git</connection> |
| 31 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/apps.git</developerConnection> |
| 32 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/apps/browse</url> |
| 33 | </scm> |
| 34 | |
| 35 | |
| 36 | <profiles> |
| 37 | <profile> |
| 38 | <id>blackduck</id> |
| 39 | <activation> |
| 40 | <property> |
| 41 | <name>blackduck-scan</name> |
| 42 | </property> |
| 43 | </activation> |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>com.blackducksoftware.integration</groupId> |
| 48 | <artifactId>hub-maven-plugin</artifactId> |
| 49 | <version>1.4.0</version> |
| 50 | <inherited>false</inherited> |
| 51 | <configuration> |
| 52 | <hubProjectName>${project.name}</hubProjectName> |
| 53 | <outputDirectory>${project.basedir}</outputDirectory> |
| 54 | </configuration> |
| 55 | <executions> |
| 56 | <execution> |
| 57 | <id>create-bdio-file</id> |
| 58 | <phase>package</phase> |
| 59 | <goals> |
| 60 | <goal>createHubOutput</goal> |
| 61 | </goals> |
| 62 | </execution> |
| 63 | </executions> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | |
| 67 | |
| 68 | |
| 69 | </build> |
| 70 | |
| 71 | </profile> |
| 72 | |
| 73 | </profiles> |
| 74 | </project> |