softlayer-api-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.softlayer.api</groupId> <artifactId>softlayer-api-client</artifactId> <version>0.3.4</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <prerequisites> <maven>3.3.9</maven> </prerequisites> <groupId>com.softlayer.api</groupId> <artifactId>softlayer-api-client</artifactId> <packaging>jar</packaging> <!-- Please keep version in sync with README --> <version>0.3.4</version> <name>SoftLayer API Client for Java</name> <description>API client for accessing the SoftLayer API</description> <url>https://sldn.softlayer.com</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/softlayer/softlayer-java/issues</url> </issueManagement> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/softlayer/softlayer-java</url> </ciManagement> <developers> <developer> <id>camporter</id> <name>Cameron Porter</name> <organization>IBM</organization> <organizationUrl>https://ibm.com/cloud</organizationUrl> <roles> <role>owner</role> <role>developer</role> </roles> <timezone>-6</timezone> </developer> </developers> <scm> <connection>scm:git:git@github.com:softlayer/softlayer-java.git</connection> <developerConnection>scm:git:git@github.com:softlayer/softlayer-java.git</developerConnection> <url>git@github.com:softlayer/softlayer-java.git</url> <tag>0.3.4</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>8</java.version> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.9</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.2.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</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>3.3.1</version> <configuration> <!-- SLDN documentation contains HTML, but it isn't well formatted. --> <!-- Java 8 will error if we don't skip doclint here --> <doclint>none</doclint> <source>${java.version}</source> <additionalJOption>--allow-script-in-comments</additionalJOption> </configuration> <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>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Generate services --> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <id>generate-services</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <pom>gen/pom.xml</pom> <goals> <goal>compile</goal> <goal>exec:java</goal> </goals> <streamLogs>true</streamLogs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> <configuration> <excludes> <exclude>**/*com/softlayer/api/service/**/*</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.8.1</version> <reportSets> <reportSet> <reports> <report>dependency-updates-report</report> <report>plugin-updates-report</report> <report>property-updates-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>