Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -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"> |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 4 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
Dan Timoney | e93adc2 | 2021-02-22 14:11:46 -0500 | [diff] [blame] | 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 0e061be | 2023-03-28 09:37:21 -0400 | [diff] [blame] | 8 | <version>2.5.4</version> |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 11 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.sli</groupId> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 13 | <artifactId>ccsdk-sli-root</artifactId> |
Dan Timoney | 21e0eb9 | 2023-06-06 06:44:51 -0400 | [diff] [blame^] | 14 | <version>1.7.0-SNAPSHOT</version> |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 15 | <packaging>pom</packaging> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 16 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 17 | <name>ccsdk-sli</name> |
| 18 | <description>Service Logic Interpreter</description> |
| 19 | <url>https://wiki.onap.org</url> |
| 20 | <organization> |
| 21 | <name>ONAP</name> |
| 22 | </organization> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 23 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 24 | <modules> |
| 25 | <module>core</module> |
| 26 | <module>adaptors</module> |
| 27 | <module>northbound</module> |
| 28 | <module>plugins</module> |
| 29 | </modules> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 30 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 31 | <scm> |
| 32 | <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection> |
| 33 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sli.git</developerConnection> |
| 34 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sli/browse</url> |
| 35 | <tag>sli-1.1.0</tag> |
| 36 | </scm> |
| 37 | <distributionManagement> |
| 38 | <site> |
| 39 | <id>ecomp-site</id> |
| 40 | <url>dav:${onap.nexus.url}/${sitePath}</url> |
| 41 | </site> |
| 42 | </distributionManagement> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 43 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 44 | <properties> |
| 45 | <sitePath>content/sites/site/org/onap/ccsdk/sli/${project.version}/</sitePath> |
| 46 | </properties> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 47 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 48 | <profiles> |
| 49 | <profile> |
| 50 | <id>blackduck</id> |
| 51 | <activation> |
| 52 | <property> |
| 53 | <name>blackduck-scan</name> |
| 54 | </property> |
| 55 | </activation> |
| 56 | <build> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>com.blackducksoftware.integration</groupId> |
| 60 | <artifactId>hub-maven-plugin</artifactId> |
| 61 | <version>1.4.0</version> |
| 62 | <inherited>false</inherited> |
| 63 | <configuration> |
| 64 | <hubProjectName>${project.name}</hubProjectName> |
| 65 | <outputDirectory>${project.basedir}</outputDirectory> |
| 66 | </configuration> |
| 67 | <executions> |
| 68 | <execution> |
| 69 | <id>create-bdio-file</id> |
| 70 | <phase>package</phase> |
| 71 | <goals> |
| 72 | <goal>createHubOutput</goal> |
| 73 | </goals> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | </plugins> |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 78 | </build> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 79 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 80 | </profile> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 81 | |
Dan Timoney | 8f2fcda | 2020-12-02 07:48:49 -0500 | [diff] [blame] | 82 | <profile> |
| 83 | <id>dependency-list</id> |
| 84 | <build> |
| 85 | <plugins> |
| 86 | <plugin> |
| 87 | <groupId>com.github.ferstl</groupId> |
| 88 | <artifactId>depgraph-maven-plugin</artifactId> |
| 89 | <executions> |
| 90 | <execution> |
| 91 | <phase>validate</phase> |
| 92 | <inherited>false</inherited> |
| 93 | <goals> |
| 94 | <goal>aggregate</goal> |
| 95 | </goals> |
| 96 | </execution> |
| 97 | </executions> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.codehaus.mojo</groupId> |
| 101 | <artifactId>build-helper-maven-plugin</artifactId> |
| 102 | <executions> |
| 103 | <execution> |
| 104 | <id>attach-artifacts</id> |
| 105 | <phase>package</phase> |
| 106 | <inherited>false</inherited> |
| 107 | <goals> |
| 108 | <goal>attach-artifact</goal> |
| 109 | </goals> |
| 110 | <configuration> |
| 111 | <artifacts> |
| 112 | <artifact> |
| 113 | <file>${dependency-list.file}</file> |
| 114 | <type>txt</type> |
| 115 | <classifier>dependencies</classifier> |
| 116 | </artifact> |
| 117 | </artifacts> |
| 118 | </configuration> |
| 119 | </execution> |
| 120 | </executions> |
| 121 | </plugin> |
| 122 | </plugins> |
| 123 | </build> |
| 124 | </profile> |
| 125 | </profiles> |
Dan Timoney | 37fca9b | 2020-11-30 10:35:19 -0500 | [diff] [blame] | 126 | </project> |