egeria-connector-ibm-information-server-sources-2.11.ia-clientlibrary.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of egeria-connector-ibm-information-server-package Show documentation
Show all versions of egeria-connector-ibm-information-server-package Show documentation
Bundling of the IBM Information Server connectors for distribution and use within an OMAG Server Platform.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- SPDX-License-Identifier: Apache-2.0 --> <!-- Copyright Contributors to the ODPi Egeria project. --> <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"> <parent> <artifactId>egeria-connector-ibm-information-server</artifactId> <groupId>org.odpi.egeria</groupId> <version>2.11</version> </parent> <modelVersion>4.0.0</modelVersion> <name>IBM Information Analyzer REST API Client Library</name> <description> A Java client library that uses the IBM Information Analyzer (IA) REST API to call into an Information Analyzer environment. </description> <artifactId>ibm-ia-rest-client-library</artifactId> <dependencies> <!-- Spring for calling REST APIs --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </dependency> <dependency> <groupId>org.odpi.egeria</groupId> <artifactId>http-helper</artifactId> </dependency> <dependency> <groupId>com.fasterxml.woodstox</groupId> <artifactId>woodstox-core</artifactId> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </dependency> <dependency> <groupId>org.odpi.egeria</groupId> <artifactId>egeria-connector-ibm-information-server-test</artifactId> <version>${connector.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <!-- Testing --> <plugin> <groupId>org.mock-server</groupId> <artifactId>mockserver-maven-plugin</artifactId> <configuration> <serverPort>1080</serverPort> <logLevel>WARN</logLevel> <initializationClass>org.odpi.egeria.connectors.ibm.information.server.mocks.MockServerExpectations</initializationClass> </configuration> <executions> <execution> <id>process-test-classes</id> <phase>process-test-classes</phase> <goals> <goal>start</goal> </goals> </execution> <execution> <id>package</id> <phase>package</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>