jqassistant-docker-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jqassistant.plugin</groupId>
<artifactId>jqassistant-docker-plugin</artifactId>
<version>2.1.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jqassistant.plugin</groupId>
<artifactId>parent</artifactId>
<version>2.1.0</version>
</parent>
<artifactId>jqassistant-docker-plugin</artifactId>
<version>2.1.0</version>
<name>jQAssistant Docker Plugin</name>
<description>Provides a Docker registry scanner jQAssistant.</description>
<url>https://github.com/dirkmahler/jqassistant-docker-plugin</url>
<developers>
<developer>
<id>dirk-mahler</id>
<name>Dirk Mahler</name>
<email>dirk.mahler@buschmais.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/jqassistant-plugin/jqassistant-docker-plugin.git</connection>
<developerConnection>scm:git:https://github.com/jqassistant-plugin/jqassistant-docker-plugin.git
</developerConnection>
<url>https://github.com/jqassistant-plugin/jqassistant-docker-plugin</url>
<tag>2.1.0</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jersey-client.version>2.34</jersey-client.version>
<com.fasterxml.jackson.version>2.15.0</com.fasterxml.jackson.version>
<net.jodah.failsafe.version>2.4.0</net.jodah.failsafe.version>
<org.testcontainers.version>1.19.7</org.testcontainers.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.buschmais.jqassistant</groupId>
<artifactId>bom</artifactId>
<version>${com.buschmais.jqassistant.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.buschmais.jqassistant.core</groupId>
<artifactId>store</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.buschmais.jqassistant.core</groupId>
<artifactId>scanner</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.buschmais.jqassistant.plugin</groupId>
<artifactId>common</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.buschmais.xo</groupId>
<artifactId>xo.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${com.fasterxml.jackson.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${com.fasterxml.jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>${com.fasterxml.jackson.version}</version>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.jodah</groupId>
<artifactId>failsafe</artifactId>
<version>${net.jodah.failsafe.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test related dependencies -->
<dependency>
<groupId>com.buschmais.jqassistant.core</groupId>
<artifactId>test</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey-client.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${org.testcontainers.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>