Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
RehanRaza | 44985ff | 2019-11-12 13:21:21 +0100 | [diff] [blame] | 5 | <repositories> |
| 6 | <repository> |
| 7 | <id>onap-releases</id> |
| 8 | <name>onap-releases</name> |
| 9 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 10 | </repository> |
| 11 | </repositories> |
| 12 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 13 | <parent> |
| 14 | <groupId>org.onap.ccsdk.parent</groupId> |
| 15 | <artifactId>odlparent-lite</artifactId> |
| 16 | <version>1.4.3</version> |
| 17 | </parent> |
| 18 | |
| 19 | <groupId>org.onap.sdnc.oam</groupId> |
| 20 | <artifactId>sdnc-oam</artifactId> |
| 21 | <version>1.7.3-SNAPSHOT</version> |
| 22 | <packaging>pom</packaging> |
| 23 | |
| 24 | <name>sdnc-oam</name> |
| 25 | <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description> |
| 26 | <url>https://wiki.onap.org</url> |
| 27 | <organization> |
| 28 | <name>AT&T</name> |
| 29 | </organization> |
| 30 | |
RehanRaza | dbadd6e | 2019-11-12 20:10:43 +0100 | [diff] [blame] | 31 | <modules> |
| 32 | <module>platform-logic</module> |
| 33 | </modules> |
| 34 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 35 | <scm> |
| 36 | <connection>scm:git:ssh://git@${onap.git.host}/sdnc-oam.git</connection> |
| 37 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-oam.git</developerConnection> |
| 38 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-oam/browse</url> |
| 39 | <tag>HEAD</tag> |
| 40 | </scm> |
| 41 | <issueManagement> |
| 42 | <system>JIRA</system> |
| 43 | <url>https://jira.onap.org/</url> |
| 44 | </issueManagement> |
| 45 | <ciManagement> |
| 46 | <system>Jenkins</system> |
| 47 | <url>https://jenkins.onap.org/</url> |
| 48 | </ciManagement> |
| 49 | <distributionManagement> |
| 50 | <site> |
| 51 | <id>sdnc-javadoc</id> |
| 52 | <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
| 53 | </site> |
| 54 | </distributionManagement> |
| 55 | |
| 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-surefire-plugin</artifactId> |
| 61 | <version>2.17</version> |
| 62 | <configuration> |
| 63 | <skipTests>false</skipTests> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
| 68 | |
| 69 | <profiles> |
| 70 | <profile> |
| 71 | <id>blackduck</id> |
| 72 | <activation> |
| 73 | <property> |
| 74 | <name>blackduck-scan</name> |
| 75 | </property> |
| 76 | </activation> |
| 77 | <build> |
| 78 | <plugins> |
| 79 | <plugin> |
| 80 | <groupId>com.blackducksoftware.integration</groupId> |
| 81 | <artifactId>hub-maven-plugin</artifactId> |
| 82 | <version>1.4.0</version> |
| 83 | <inherited>false</inherited> |
| 84 | <configuration> |
| 85 | <hubProjectName>${project.name}</hubProjectName> |
| 86 | <outputDirectory>${project.basedir}</outputDirectory> |
| 87 | </configuration> |
| 88 | <executions> |
| 89 | <execution> |
| 90 | <id>create-bdio-file</id> |
| 91 | <phase>package</phase> |
| 92 | <goals> |
| 93 | <goal>createHubOutput</goal> |
| 94 | </goals> |
| 95 | </execution> |
| 96 | </executions> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | |
| 100 | |
| 101 | </build> |
| 102 | |
| 103 | </profile> |
| 104 | <profile> |
| 105 | <id>docker</id> |
RehanRaza | 9504946 | 2019-11-13 10:51:12 +0100 | [diff] [blame] | 106 | <activation> |
| 107 | <activeByDefault>true</activeByDefault> |
| 108 | </activation> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 109 | <modules> |
| 110 | <module>installation</module> |
| 111 | </modules> |
| 112 | </profile> |
| 113 | |
| 114 | </profiles> |
| 115 | <dependencies> |
| 116 | <dependency> |
| 117 | <groupId>org.slf4j</groupId> |
| 118 | <artifactId>slf4j-api</artifactId> |
| 119 | <version>1.7.25</version> |
| 120 | </dependency> |
| 121 | </dependencies> |
| 122 | </project> |