commons-daemon
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.wrzasq.commons</groupId> <artifactId>commons-daemon</artifactId> <version>1.0.13</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <!-- # This file is part of the pl.wrzasq.commons. # # @license http://mit-license.org/ The MIT license # @copyright 2014 - 2017, 2019 © by Rafał Wrzeszcz - Wrzasq.pl. --> <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> <!-- core project settings --> <artifactId>commons-daemon</artifactId> <packaging>jar</packaging> <parent> <groupId>pl.wrzasq.commons</groupId> <artifactId>commons</artifactId> <version>1.0.13</version> <relativePath>../</relativePath> </parent> <!-- project meta info --> <name>WrzasqPl Commons Daemon</name> <url>https://rafalwrzeszcz-wrzasqpl.github.io/pl.wrzasq.commons/commons-daemon/</url> <description>Helper components for handling daemon services with Apache Commons Daemon.</description> <inceptionYear>2014</inceptionYear> <!-- project dependencies --> <dependencies> <dependency> <groupId>commons-daemon</groupId> <artifactId>commons-daemon</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.26</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>1.7.26</version> <scope>test</scope> </dependency> </dependencies> </project>