local
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.solven-eu.cleanthat</groupId>
<artifactId>local</artifactId>
<version>2.25</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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.solven-eu.cleanthat</groupId>
<artifactId>aggregator-cleanthat</artifactId>
<version>2.25</version>
</parent>
<artifactId>local</artifactId>
<!-- `name` is required by Sonatype-->
<name>${project.groupId}:${project.artifactId}</name>
<properties>
<jacoco.branch.ratio>0.00</jacoco.branch.ratio>
<jacoco.instruction.ratio>0.07</jacoco.instruction.ratio>
</properties>
<dependencies>
<dependency>
<groupId>io.github.solven-eu.pepper</groupId>
<artifactId>pepper</artifactId>
<version>${pepper.version}</version>
</dependency>
<dependency>
<groupId>io.github.solven-eu.cleanthat</groupId>
<artifactId>code-providers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.solven-eu.cleanthat</groupId>
<artifactId>config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<!-- Encrypt login token, and sensible data in DB -->
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.solven-eu.cleanthat</groupId>
<artifactId>test-helpers</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>