config-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.cactusthorn.config</groupId>
<artifactId>config-core</artifactId>
<version>0.81</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.cactusthorn.config</groupId>
<artifactId>root</artifactId>
<version>0.81</version>
</parent>
<groupId>net.cactusthorn.config</groupId>
<artifactId>config-core</artifactId>
<version>0.81</version>
<name>Config :: Core</name>
<description>Config :: Core</description>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>https://github.com/Gmugra/net.cactusthorn.config/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>akhatskevich</id>
<name>Alexei Khatskevich</name>
<email>alexei.khatskevich@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Gmugra/net.cactusthorn.config.git</connection>
<developerConnection>scm:git:https://github.com/Gmugra/net.cactusthorn.config.git</developerConnection>
<url>https://github.com/Gmugra/net.cactusthorn.config</url>
</scm>
<properties>
<copy-build-resources.skip>false</copy-build-resources.skip>
<license.skip>false</license.skip>
<checkstyle.skip>false</checkstyle.skip>
<pmd.skip>false</pmd.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifestEntries>
<Automatic-Module-Name>net.cactusthorn.config.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>