Singal, Kapil (ks220y) | ac1650b | 2018-09-06 16:01:47 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 5 | <modelVersion>4.0.0</modelVersion>
|
| 6 |
|
| 7 | <parent>
|
| 8 | <groupId>org.onap.ccsdk.parent</groupId>
|
| 9 | <artifactId>odlparent-lite</artifactId>
|
Timoney, Dan (dt5972) | f5da531 | 2018-10-23 09:21:16 -0400 | [diff] [blame] | 10 | <version>1.2.0-SNAPSHOT</version>
|
Singal, Kapil (ks220y) | ac1650b | 2018-09-06 16:01:47 -0400 | [diff] [blame] | 11 | <relativePath />
|
| 12 | </parent>
|
| 13 |
|
| 14 | <groupId>org.onap.ccsdk.features</groupId>
|
| 15 | <artifactId>ccsdk-features</artifactId>
|
Timoney, Dan (dt5972) | f5da531 | 2018-10-23 09:21:16 -0400 | [diff] [blame] | 16 | <version>0.4.0-SNAPSHOT</version>
|
Singal, Kapil (ks220y) | ac1650b | 2018-09-06 16:01:47 -0400 | [diff] [blame] | 17 | <packaging>pom</packaging>
|
| 18 |
|
| 19 | <name>ccsdk-features</name>
|
| 20 | <description>CCSDK applications</description>
|
| 21 | <url>https://wiki.onap.org</url>
|
| 22 | <organization>
|
| 23 | <name>ONAP</name>
|
| 24 | </organization>
|
| 25 |
|
| 26 | <modules>
|
Alexis de Talhouƫt | dc68efe | 2018-09-11 15:07:43 -0400 | [diff] [blame] | 27 | <module>features</module>
|
Singal, Kapil (ks220y) | ac1650b | 2018-09-06 16:01:47 -0400 | [diff] [blame] | 28 | <module>blueprints-processor</module>
|
| 29 | </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>
|