piranha-extension-concurro
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cloud.piranha.extension</groupId> <artifactId>piranha-extension-concurro</artifactId> <version>24.12.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cloud.piranha.extension</groupId> <artifactId>project</artifactId> <version>24.12.0</version> </parent> <artifactId>piranha-extension-concurro</artifactId> <packaging>jar</packaging> <name>Piranha - Extension - Concurro</name> <dependencies> <!-- compile --> <dependency> <groupId>cloud.piranha.core</groupId> <artifactId>piranha-core-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- provided --> <dependency> <groupId>cloud.piranha.extension</groupId> <artifactId>piranha-extension-scinitializer</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <!-- runtime --> <dependency> <groupId>jakarta.enterprise.concurrent</groupId> <artifactId>jakarta.enterprise.concurrent-api</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.enterprise.concurrent</artifactId> <scope>runtime</scope> </dependency> </dependencies> <distributionManagement> <site> <id>default</id> <url>file:///tmp/piranha/extension/concurro/</url> </site> </distributionManagement> </project>