hpe-nv-java-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.hpe.nv</groupId>
<artifactId>hpe-nv-java-api</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hpe.nv</groupId>
<artifactId>hpe-nv-java-api</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>HPE Network Virtualization Java API</name>
<description>
This Java library lets you call the NV API in your automatic tests (for example, your Selenium tests).
You can use this API instead of using the NV Test Manager user interface.
</description>
<url>https://github.com/HewlettPackard/hpe-nv-java</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<repository.local>file:///path/to/local/repository</repository.local>
<repository.type>hg</repository.type>
</properties>
<scm>
<connection>scm:${repository.type}:${repository.local}</connection>
<developerConnection>scm:${repository.type}:${repository.local}</developerConnection>
<url>scm:${repository.type}:${repository.local}</url>
</scm>
<developers>
<developer>
<id>eleanora</id>
<email>eleanor.ainy@hpe.com</email>
<name>Eleanor Ainy</name>
<url>https://github.com/eleanora</url>
<organization>HP Software</organization>
<organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl>
<timezone>+2</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.2</version>
</dependency>
<dependency>
<artifactId>hpe-nv-dtos</artifactId>
<groupId>com.hpe.nv</groupId>
<version>9.10</version>
</dependency>
<!--
Use this dependency instead of the above hpe-nv-dtos.jar dependency
only if the nexus repository is unavailable for some reason
and thus cannot provide the hpe-nv-dtos.jar.
To use this dependency, you must insert the hpe-nv-dtos.jar to the project folder structure
and specify the path of the inserted jar in the systemPath property.
For example, to use the path ${basedir}/lib/hpe-nv-dtos.jar, create a folder named "lib"
under "hpe-nv-java-api" module folder and put the hpe-nv-dtos.jar under this "lib" folder.
<dependency>
<artifactId>hpe-nv-dtos</artifactId>
<groupId>com.hpe.nv</groupId>
<scope>system</scope>
<version>9.10</version>
<systemPath>${basedir}/lib/hpe-nv-dtos.jar</systemPath>
</dependency>
-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>default-profile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>release-internal-profile</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>