cloudant-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-examples</artifactId>
<version>0.10.13</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>cloudant-parent</artifactId>
<groupId>com.ibm.cloud</groupId>
<version>0.10.13</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>cloudant-examples</artifactId>
<packaging>jar</packaging>
<name>Cloudant Code Examples</name>
<dependencies>
<!--
There should be a dependency for each module whose request example class
exists in this "examples" module.
Add new "dependency" entries here as needed when you add a request examples class
for a new service.
Note: the "artifactId" values below should reflect the "artifactId" value specified
in each module's pom.xml file (i.e. not the module's directory name).
-->
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin-version}</version>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-version}</version>
<configuration>
<environmentVariables>
<IBM_CREDENTIALS_FILE>${project.parent.basedir}/cloudant_v1.env</IBM_CREDENTIALS_FILE>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<name>IBM Cloudant</name>
<email>cldtsdks@us.ibm.com</email>
<url>https://www.ibm.com/cloud/cloudant</url>
</developer>
</developers>
</project>