blob: d606cdc01f9a35f6dda8ed43aee71c6ae1f54fca [file] [log] [blame]
Dan Timoney37fca9b2020-11-30 10:35:19 -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">
Dan Timoney8f2fcda2020-12-02 07:48:49 -05003 <modelVersion>4.0.0</modelVersion>
Dan Timoney37fca9b2020-11-30 10:35:19 -05004
Dan Timoney8f2fcda2020-12-02 07:48:49 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
Dan Timoneye93adc22021-02-22 14:11:46 -05007 <artifactId>odlparent-lite</artifactId>
Dan Timoney0e061be2023-03-28 09:37:21 -04008 <version>2.5.4</version>
Dan Timoney8f2fcda2020-12-02 07:48:49 -05009 <relativePath/>
10 </parent>
Dan Timoney37fca9b2020-11-30 10:35:19 -050011
Dan Timoney8f2fcda2020-12-02 07:48:49 -050012 <groupId>org.onap.ccsdk.sli</groupId>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050013 <artifactId>ccsdk-sli-root</artifactId>
Dan Timoney21e0eb92023-06-06 06:44:51 -040014 <version>1.7.0-SNAPSHOT</version>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050015 <packaging>pom</packaging>
Dan Timoney37fca9b2020-11-30 10:35:19 -050016
Dan Timoney8f2fcda2020-12-02 07:48:49 -050017 <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 Timoney37fca9b2020-11-30 10:35:19 -050023
Dan Timoney8f2fcda2020-12-02 07:48:49 -050024 <modules>
25 <module>core</module>
26 <module>adaptors</module>
27 <module>northbound</module>
28 <module>plugins</module>
29 </modules>
Dan Timoney37fca9b2020-11-30 10:35:19 -050030
Dan Timoney8f2fcda2020-12-02 07:48:49 -050031 <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 Timoney37fca9b2020-11-30 10:35:19 -050043
Dan Timoney8f2fcda2020-12-02 07:48:49 -050044 <properties>
45 <sitePath>content/sites/site/org/onap/ccsdk/sli/${project.version}/</sitePath>
46 </properties>
Dan Timoney37fca9b2020-11-30 10:35:19 -050047
Dan Timoney8f2fcda2020-12-02 07:48:49 -050048 <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)94f4b9b2021-03-02 20:00:49 -050057 <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 Timoney8f2fcda2020-12-02 07:48:49 -050078 </build>
Dan Timoney37fca9b2020-11-30 10:35:19 -050079
Dan Timoney8f2fcda2020-12-02 07:48:49 -050080 </profile>
Dan Timoney37fca9b2020-11-30 10:35:19 -050081
Dan Timoney8f2fcda2020-12-02 07:48:49 -050082 <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 Timoney37fca9b2020-11-30 10:35:19 -0500126</project>