ldio-ldes-client-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>be.vlaanderen.informatievlaanderen.ldes.ldio</groupId> <artifactId>ldio-ldes-client-connector</artifactId> <version>2.12.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"> <parent> <groupId>be.vlaanderen.informatievlaanderen.ldes.ldio</groupId> <artifactId>ldio-connectors</artifactId> <version>2.12.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ldio-ldes-client-connector</artifactId> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>be.vlaanderen.informatievlaanderen.ldes.ldio</groupId> <artifactId>ldio-request-executor</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>be.vlaanderen.informatievlaanderen.ldes.ldio</groupId> <artifactId>ldio-ldes-client</artifactId> <exclusions> <exclusion> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-dep</artifactId> </exclusion> <exclusion> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </exclusion> </exclusions> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test-autoconfigure</artifactId> <scope>test</scope> </dependency> </dependencies> </project>