Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -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" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.openecomp.sdnc.core</groupId> |
| 7 | <artifactId>root</artifactId> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 8 | <version>1.1.0</version> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <packaging>pom</packaging> |
| 13 | <groupId>org.openecomp.sdnc.oam</groupId> |
| 14 | <artifactId>sdnc-oam</artifactId> |
| 15 | |
| 16 | <name>SDN-C OAM</name> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 17 | <url>https://wiki.openecomp.org</url> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 18 | <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description> |
| 19 | |
| 20 | |
| 21 | <issueManagement> |
| 22 | <system>JIRA</system> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 23 | <url>https://jira.openecomp.org/</url> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 24 | </issueManagement> |
| 25 | |
| 26 | <scm> |
| 27 | <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-oam.git</connection> |
| 28 | <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-oam.git</developerConnection> |
| 29 | <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-oam/browse</url> |
| 30 | <tag>HEAD</tag> |
| 31 | </scm> |
| 32 | |
| 33 | <ciManagement> |
| 34 | <system>Jenkins</system> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 35 | <url>https://jenkins.openecomp.org/</url> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 36 | </ciManagement> |
| 37 | |
| 38 | <distributionManagement> |
| 39 | <site> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 40 | <id>sdnc-javadoc</id> |
| 41 | <url>dav:https://${openecomp.nexus.host}:${openecomp.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 42 | </site> |
| 43 | </distributionManagement> |
Timoney, Daniel (dt5972) | eaa55e3 | 2017-02-21 09:40:28 -0500 | [diff] [blame] | 44 | <profiles> |
| 45 | <profile> |
| 46 | <id>blackduck</id> |
| 47 | <activation> |
| 48 | <property> |
| 49 | <name>blackduck-scan</name> |
| 50 | </property> |
| 51 | </activation> |
| 52 | <build> |
| 53 | <pluginManagement> |
| 54 | <plugins> |
| 55 | <plugin> |
| 56 | <groupId>com.blackducksoftware.integration</groupId> |
| 57 | <artifactId>hub-maven-plugin</artifactId> |
| 58 | <version>1.4.0</version> |
| 59 | <inherited>false</inherited> |
| 60 | <configuration> |
| 61 | <hubProjectName>${project.name}</hubProjectName> |
| 62 | <outputDirectory>${project.basedir}</outputDirectory> |
| 63 | </configuration> |
| 64 | <executions> |
| 65 | <execution> |
| 66 | <id>create-bdio-file</id> |
| 67 | <phase>package</phase> |
| 68 | <goals> |
| 69 | <goal>createHubOutput</goal> |
| 70 | </goals> |
| 71 | </execution> |
| 72 | </executions> |
| 73 | </plugin> |
| 74 | </plugins> |
| 75 | |
| 76 | </pluginManagement> |
| 77 | |
| 78 | </build> |
| 79 | |
| 80 | </profile> |
Timoney, Daniel (dt5972) | eaa55e3 | 2017-02-21 09:40:28 -0500 | [diff] [blame] | 81 | <profile> |
| 82 | <id>docker</id> |
| 83 | <modules> |
| 84 | <module>installation</module> |
| 85 | </modules> |
| 86 | </profile> |
| 87 | |
| 88 | </profiles> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 89 | |
| 90 | <build> |
| 91 | <plugins> |
Timoney, Daniel (dt5972) | 5771678 | 2017-02-21 03:48:05 -0500 | [diff] [blame] | 92 | <plugin> |
Timoney, Daniel (dt5972) | 6d831ce | 2017-02-20 11:13:38 -0500 | [diff] [blame] | 93 | <groupId>org.apache.maven.plugins</groupId> |
| 94 | <artifactId>maven-surefire-plugin</artifactId> |
| 95 | <version>2.17</version> |
| 96 | <configuration> |
| 97 | <skipTests>true</skipTests> |
| 98 | </configuration> |
| 99 | </plugin> |
Timoney, Daniel (dt5972) | 94b542b | 2017-02-21 15:57:41 -0500 | [diff] [blame] | 100 | <plugin> |
| 101 | <groupId>org.sonatype.plugins</groupId> |
| 102 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 103 | <version>1.6.7</version> |
| 104 | <extensions>true</extensions> |
| 105 | <configuration> |
| 106 | <nexusUrl>https://${openecomp.nexus.host}</nexusUrl> |
| 107 | <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId> |
| 108 | <serverId>${openecomp.nexus.staging.server-id}</serverId> |
| 109 | </configuration> |
| 110 | </plugin> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 111 | </plugins> |
| 112 | |
| 113 | </build> |
| 114 | <modules> |
| 115 | <module>admportal</module> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 116 | <module>dgbuilder</module> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 117 | <module>platform-logic</module> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 118 | </modules> |
Timoney, Daniel (dt5972) | 6d831ce | 2017-02-20 11:13:38 -0500 | [diff] [blame] | 119 | |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 120 | <organization> |
| 121 | <name>AT&T</name> |
| 122 | </organization> |
Dan Timoney | 139e1b5 | 2017-04-26 08:13:03 -0400 | [diff] [blame] | 123 | <version>1.1.1-SNAPSHOT</version> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 124 | |
| 125 | |
| 126 | </project> |