iaesdk-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ibm.cloud</groupId> <artifactId>iaesdk-common</artifactId> <version>1.3.1</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> <!-- >>> Replace this with the parent pom's artifactId --> <artifactId>iaesdk</artifactId> <groupId>com.ibm.cloud</groupId> <version>1.3.1</version> <relativePath>../..</relativePath> </parent> <!-- >>> Replace "my-services" with the parent artifactId (e.g. platform-services-common) --> <artifactId>iaesdk-common</artifactId> <!-- >>> Replace "My Services" with the service category (e.g. Platform Services Common Library) --> <name>IBM Analytics Engine Services Common Library</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.ibm.cloud</groupId> <artifactId>sdk-core</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>${project.parent.artifactId}.properties</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <developers> <developer> <name>IBM Cloud Analytics Engine SDK Development</name> <email>surya.penumatcha@ibm.com</email> <url>https://www.ibm.com/</url> </developer> </developers> </project>