blob: a635ee14e255f9c49450231d54017baa172eadd1 [file] [log] [blame]
Dan Timoney1b476832017-02-15 15:09:44 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -05002<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>
Dan Timoney1b476832017-02-15 15:09:44 -05004
5 <parent>
Marcus G K Williamseb2d4022017-08-30 19:32:32 -07006 <groupId>org.onap.ccsdk.parent</groupId>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -05007 <artifactId>odlparent-lite</artifactId>
8 <version>1.0.1-SNAPSHOT</version>
9 <relativePath />
Dan Timoney1b476832017-02-15 15:09:44 -050010 </parent>
11
Marcus G K Williamseb2d4022017-08-30 19:32:32 -070012 <groupId>org.onap.sdnc.northbound</groupId>
Dan Timoney1b476832017-02-15 15:09:44 -050013 <artifactId>sdnc-northbound</artifactId>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050014 <version>1.3.1-SNAPSHOT</version>
15 <packaging>pom</packaging>
Dan Timoney1b476832017-02-15 15:09:44 -050016
Jessica Wagantall8e779f42017-09-08 11:51:39 -070017 <name>sdnc-northbound</name>
Dan Timoney1b476832017-02-15 15:09:44 -050018 <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050019 <url>https://wiki.onap.org</url>
20 <organization>
21 <name>ONAP</name>
22 </organization>
Dan Timoney1b476832017-02-15 15:09:44 -050023
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050024 <modules>
25 <module>generic-resource-api</module>
26 <module>vnfapi</module>
27 <module>vnftools</module>
28 </modules>
Dan Timoney1b476832017-02-15 15:09:44 -050029
30 <scm>
Marcus G K Williams307e6ec2017-09-13 11:52:07 -070031 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
Dan Timoney1b476832017-02-15 15:09:44 -050032
Marcus G K Williams307e6ec2017-09-13 11:52:07 -070033 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection>
34 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url>
Dan Timoney2db4ce92017-02-21 09:08:47 -050035 </scm>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050036 <issueManagement>
37 <system>JIRA</system>
38 <url>https://jira.onap.org/</url>
39 </issueManagement>
Dan Timoney1b476832017-02-15 15:09:44 -050040 <ciManagement>
41 <system>Jenkins</system>
Marcus G K Williams307e6ec2017-09-13 11:52:07 -070042 <url>https://jenkins.onap.org/</url>
Dan Timoney1b476832017-02-15 15:09:44 -050043 </ciManagement>
Dan Timoney2db4ce92017-02-21 09:08:47 -050044 <distributionManagement>
45 <site>
Dan Timoney60d5ee02017-04-21 17:36:30 -040046 <id>sdnc-javadoc</id>
Marcus G K Williams307e6ec2017-09-13 11:52:07 -070047 <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
Dan Timoney2db4ce92017-02-21 09:08:47 -050048 </site>
49 </distributionManagement>
Timoney, Dan (dt5972)131f1fa2018-02-28 21:13:09 -050050
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-surefire-plugin</artifactId>
56 <version>2.17</version>
57 <configuration>
58 <skipTests>false</skipTests>
59 </configuration>
60 </plugin>
61 <plugin>
62 <groupId>org.sonatype.plugins</groupId>
63 <artifactId>nexus-staging-maven-plugin</artifactId>
64 <version>1.6.7</version>
65 <extensions>true</extensions>
66 <configuration>
67 <nexusUrl>https://${onap.nexus.host}</nexusUrl>
68 <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
69 <serverId>${onap.nexus.staging.server-id}</serverId>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
Dan Timoneyc75b13e2017-02-21 13:31:06 -050075 <profiles>
76 <profile>
77 <id>blackduck</id>
78 <activation>
79 <property>
80 <name>blackduck-scan</name>
81 </property>
82 </activation>
83 <build>
Dan Timoneyc75b13e2017-02-21 13:31:06 -050084 <plugins>
85 <plugin>
86 <groupId>com.blackducksoftware.integration</groupId>
87 <artifactId>hub-maven-plugin</artifactId>
88 <version>1.4.0</version>
89 <inherited>false</inherited>
90 <configuration>
91 <hubProjectName>${project.name}</hubProjectName>
92 <outputDirectory>${project.basedir}</outputDirectory>
93 </configuration>
94 <executions>
95 <execution>
96 <id>create-bdio-file</id>
97 <phase>package</phase>
98 <goals>
99 <goal>createHubOutput</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105
Dan Timoneyc75b13e2017-02-21 13:31:06 -0500106
107 </build>
108
109 </profile>
Dan Timoneyc75b13e2017-02-21 13:31:06 -0500110
111 </profiles>
Dan Timoney1b476832017-02-15 15:09:44 -0500112</project>