threadpool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>threadpool</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<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>
<groupId>net.microfalx</groupId>
<artifactId>threadpool</artifactId>
<version>1.0.0</version>
<parent>
<groupId>net.microfalx</groupId>
<artifactId>pom</artifactId>
<version>1.0.10</version>
</parent>
<name>Thread Pool</name>
<description>A thread pool implementation in Java which reuses idle threads.</description>
<url>https://github.com/adrian-tarau/threadpool</url>
<organization>
<name>Adrian Tarau</name>
<url>https://github.com/adrian-tarau</url>
</organization>
<scm>
<connection>scm:git:https://github.com/adrian-tarau/threadpool</connection>
<developerConnection>scm:git:https://github.com/adrian-tarau/threadpool</developerConnection>
<url>https://github.com/adrian-tarau/threadpool/tree/main</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/adrian-tarau/threadpool/issues</url>
</issueManagement>
<inceptionYear>2022</inceptionYear>
<properties>
<bom.version>1.0.17</bom.version>
<lang.version>1.0.1</lang.version>
<metrics.version>1.0.1</metrics.version>
</properties>
<developers>
<developer>
<name>Adrian Tarau</name>
<email>adrian@tarau.net</email>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.microfalx.bom</groupId>
<artifactId>bom-base</artifactId>
<version>${bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Runtime -->
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>lang</artifactId>
<version>${lang.version}</version>
</dependency>
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>metrics</artifactId>
<version>${metrics.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Runtime -->
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>lang</artifactId>
</dependency>
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>metrics</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>