config
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.morimekta.utils</groupId>
<artifactId>config</artifactId>
<version>3.3.1</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>net.morimekta.utils</groupId>
<artifactId>pom</artifactId>
<version>4.5.1</version>
<relativePath>../utils-pom/pom.xml</relativePath>
</parent>
<artifactId>config</artifactId>
<version>3.3.1</version>
<packaging>jar</packaging>
<name>Configuration Utils</name>
<description>
Utilities for managing simple configuration and secrets.
</description>
<url>https://gitlab.com/morimekta/utils-config</url>
<scm>
<url>https://gitlab.com/morimekta/utils-config.git</url>
<developerConnection>scm:git:ssh://git@gitlab.com/morimekta/utils-config.git</developerConnection>
<tag>v3.3.1</tag>
</scm>
<dependencies>
<dependency>
<groupId>net.morimekta.utils</groupId>
<artifactId>file</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>net.morimekta.utils</groupId>
<artifactId>strings</artifactId>
<version>4.5.1</version>
</dependency>
<dependency>
<groupId>net.morimekta.utils</groupId>
<artifactId>collect</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.17.2</version>
</dependency>
<!-- testing dependencies -->
<dependency>
<groupId>net.morimekta.utils</groupId>
<artifactId>testing</artifactId>
<version>5.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.13.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.8</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>