Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
RehanRaza | 553523f | 2019-11-12 13:39:40 +0100 | [diff] [blame^] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Modifications Copyright (C) 2019 Nordix Foundation. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 21 | <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"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
RehanRaza | 44985ff | 2019-11-12 13:21:21 +0100 | [diff] [blame] | 24 | <repositories> |
| 25 | <repository> |
| 26 | <id>onap-releases</id> |
| 27 | <name>onap-releases</name> |
| 28 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 29 | </repository> |
| 30 | </repositories> |
| 31 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 32 | <parent> |
| 33 | <groupId>org.onap.ccsdk.parent</groupId> |
| 34 | <artifactId>odlparent-lite</artifactId> |
| 35 | <version>1.4.3</version> |
| 36 | </parent> |
| 37 | |
| 38 | <groupId>org.onap.sdnc.oam</groupId> |
| 39 | <artifactId>sdnc-oam</artifactId> |
| 40 | <version>1.7.3-SNAPSHOT</version> |
| 41 | <packaging>pom</packaging> |
| 42 | |
| 43 | <name>sdnc-oam</name> |
| 44 | <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description> |
| 45 | <url>https://wiki.onap.org</url> |
| 46 | <organization> |
| 47 | <name>AT&T</name> |
| 48 | </organization> |
| 49 | |
RehanRaza | dbadd6e | 2019-11-12 20:10:43 +0100 | [diff] [blame] | 50 | <modules> |
| 51 | <module>platform-logic</module> |
| 52 | </modules> |
| 53 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 54 | <scm> |
| 55 | <connection>scm:git:ssh://git@${onap.git.host}/sdnc-oam.git</connection> |
| 56 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-oam.git</developerConnection> |
| 57 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-oam/browse</url> |
| 58 | <tag>HEAD</tag> |
| 59 | </scm> |
| 60 | <issueManagement> |
| 61 | <system>JIRA</system> |
| 62 | <url>https://jira.onap.org/</url> |
| 63 | </issueManagement> |
| 64 | <ciManagement> |
| 65 | <system>Jenkins</system> |
| 66 | <url>https://jenkins.onap.org/</url> |
| 67 | </ciManagement> |
| 68 | <distributionManagement> |
| 69 | <site> |
| 70 | <id>sdnc-javadoc</id> |
| 71 | <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
| 72 | </site> |
| 73 | </distributionManagement> |
| 74 | |
| 75 | <build> |
| 76 | <plugins> |
| 77 | <plugin> |
| 78 | <groupId>org.apache.maven.plugins</groupId> |
| 79 | <artifactId>maven-surefire-plugin</artifactId> |
| 80 | <version>2.17</version> |
| 81 | <configuration> |
| 82 | <skipTests>false</skipTests> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | |
| 88 | <profiles> |
| 89 | <profile> |
| 90 | <id>blackduck</id> |
| 91 | <activation> |
| 92 | <property> |
| 93 | <name>blackduck-scan</name> |
| 94 | </property> |
| 95 | </activation> |
| 96 | <build> |
| 97 | <plugins> |
| 98 | <plugin> |
| 99 | <groupId>com.blackducksoftware.integration</groupId> |
| 100 | <artifactId>hub-maven-plugin</artifactId> |
| 101 | <version>1.4.0</version> |
| 102 | <inherited>false</inherited> |
| 103 | <configuration> |
| 104 | <hubProjectName>${project.name}</hubProjectName> |
| 105 | <outputDirectory>${project.basedir}</outputDirectory> |
| 106 | </configuration> |
| 107 | <executions> |
| 108 | <execution> |
| 109 | <id>create-bdio-file</id> |
| 110 | <phase>package</phase> |
| 111 | <goals> |
| 112 | <goal>createHubOutput</goal> |
| 113 | </goals> |
| 114 | </execution> |
| 115 | </executions> |
| 116 | </plugin> |
| 117 | </plugins> |
| 118 | |
| 119 | |
| 120 | </build> |
| 121 | |
| 122 | </profile> |
| 123 | <profile> |
| 124 | <id>docker</id> |
RehanRaza | 9504946 | 2019-11-13 10:51:12 +0100 | [diff] [blame] | 125 | <activation> |
| 126 | <activeByDefault>true</activeByDefault> |
| 127 | </activation> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 128 | <modules> |
| 129 | <module>installation</module> |
| 130 | </modules> |
| 131 | </profile> |
| 132 | |
| 133 | </profiles> |
| 134 | <dependencies> |
| 135 | <dependency> |
| 136 | <groupId>org.slf4j</groupId> |
| 137 | <artifactId>slf4j-api</artifactId> |
| 138 | <version>1.7.25</version> |
| 139 | </dependency> |
| 140 | </dependencies> |
| 141 | </project> |