Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Dan Timoney | 2db4ce9 | 2017-02-21 09:08:47 -0500 | [diff] [blame] | 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"> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 4 | |
| 5 | <parent> |
| 6 | <groupId>org.openecomp.sdnc.core</groupId> |
| 7 | <artifactId>root</artifactId> |
Dan Timoney | 09b162c | 2017-02-21 08:47:08 -0500 | [diff] [blame] | 8 | <version>1.0.0</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <packaging>pom</packaging> |
| 13 | <groupId>org.openecomp.sdnc.northbound</groupId> |
| 14 | <artifactId>sdnc-northbound</artifactId> |
| 15 | |
| 16 | <name>SDN-C Northbound APIs</name> |
| 17 | <url>https://wiki.openecomp.org</url> |
| 18 | <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description> |
| 19 | |
| 20 | |
| 21 | <issueManagement> |
| 22 | <system>JIRA</system> |
| 23 | <url>https://jira.openecomp.org/</url> |
| 24 | </issueManagement> |
| 25 | |
| 26 | |
| 27 | <scm> |
| 28 | <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-northbound.git</connection> |
| 29 | |
| 30 | <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-northbound.git</developerConnection> |
| 31 | <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-northbound/browse</url> |
Dan Timoney | 2db4ce9 | 2017-02-21 09:08:47 -0500 | [diff] [blame] | 32 | </scm> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 33 | |
| 34 | <ciManagement> |
| 35 | <system>Jenkins</system> |
| 36 | <url>https://jenkins.openecomp.org/</url> |
| 37 | </ciManagement> |
| 38 | |
Dan Timoney | 2db4ce9 | 2017-02-21 09:08:47 -0500 | [diff] [blame] | 39 | <distributionManagement> |
| 40 | <site> |
| 41 | <id>sdnc-javadoc</id> |
| 42 | <url>dav:https://${openecomp.nexus.host}:${openecomp.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
| 43 | </site> |
| 44 | </distributionManagement> |
Dan Timoney | c75b13e | 2017-02-21 13:31:06 -0500 | [diff] [blame^] | 45 | <profiles> |
| 46 | <profile> |
| 47 | <id>blackduck</id> |
| 48 | <activation> |
| 49 | <property> |
| 50 | <name>blackduck-scan</name> |
| 51 | </property> |
| 52 | </activation> |
| 53 | <build> |
| 54 | <pluginManagement> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>com.blackducksoftware.integration</groupId> |
| 58 | <artifactId>hub-maven-plugin</artifactId> |
| 59 | <version>1.4.0</version> |
| 60 | <inherited>false</inherited> |
| 61 | <configuration> |
| 62 | <hubProjectName>${project.name}</hubProjectName> |
| 63 | <outputDirectory>${project.basedir}</outputDirectory> |
| 64 | </configuration> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <id>create-bdio-file</id> |
| 68 | <phase>package</phase> |
| 69 | <goals> |
| 70 | <goal>createHubOutput</goal> |
| 71 | </goals> |
| 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | |
| 77 | </pluginManagement> |
| 78 | |
| 79 | </build> |
| 80 | |
| 81 | </profile> |
| 82 | <profile> |
| 83 | <id>staging</id> |
| 84 | <activation> |
| 85 | <property> |
| 86 | <name>!no-staging</name> |
| 87 | </property> |
| 88 | </activation> |
| 89 | <build> |
| 90 | <pluginManagement> |
| 91 | <plugins> |
| 92 | <plugin> |
| 93 | <groupId>org.sonatype.plugins</groupId> |
| 94 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 95 | <version>1.6.7</version> |
| 96 | <extensions>true</extensions> |
| 97 | <configuration> |
| 98 | <nexusUrl>https://${openecomp.nexus.host}</nexusUrl> |
| 99 | <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId> |
| 100 | <serverId>${openecomp.nexus.staging.server-id}</serverId> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </pluginManagement> |
| 105 | </build> |
| 106 | </profile> |
| 107 | |
| 108 | </profiles> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 109 | |
| 110 | <build> |
| 111 | <plugins> |
Dan Timoney | 2db4ce9 | 2017-02-21 09:08:47 -0500 | [diff] [blame] | 112 | <plugin> |
Dan Timoney | 2619e3d | 2017-02-20 14:48:07 -0500 | [diff] [blame] | 113 | <groupId>org.apache.maven.plugins</groupId> |
| 114 | <artifactId>maven-surefire-plugin</artifactId> |
| 115 | <version>2.17</version> |
| 116 | <configuration> |
| 117 | <skipTests>true</skipTests> |
| 118 | </configuration> |
| 119 | </plugin> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 120 | </plugins> |
| 121 | |
| 122 | </build> |
| 123 | <modules> |
| 124 | <module>asdcApi</module> |
| 125 | <module>dataChange</module> |
Dan Timoney | 2619e3d | 2017-02-20 14:48:07 -0500 | [diff] [blame] | 126 | <!-- <module>ueb-listener</module> --> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 127 | <module>vnfapi</module> |
| 128 | <module>vnftools</module> |
Dan Timoney | 2db4ce9 | 2017-02-21 09:08:47 -0500 | [diff] [blame] | 129 | </modules> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 130 | <organization> |
| 131 | <name>AT&T</name> |
| 132 | </organization> |
Dan Timoney | 09b162c | 2017-02-21 08:47:08 -0500 | [diff] [blame] | 133 | <version>1.0.0</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 134 | |
| 135 | |
| 136 | </project> |