piranha-server-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cloud.piranha.server</groupId> <artifactId>piranha-server-core</artifactId> <version>22.2.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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cloud.piranha.server</groupId> <artifactId>project</artifactId> <version>22.2.0</version> </parent> <artifactId>piranha-server-core</artifactId> <packaging>jar</packaging> <name>Piranha - Server - Core</name> <description> The shared resources between the various Server variants of Piranha. </description> <dependencies> <!-- compile --> <dependency> <groupId>cloud.piranha.core</groupId> <artifactId>piranha-core-impl</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>cloud.piranha.http</groupId> <artifactId>piranha-http-webapp</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>cloud.piranha.extension</groupId> <artifactId>piranha-extension-standard</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- test --> <dependency> <groupId>cloud.piranha.extension</groupId> <artifactId>piranha-extension-lite</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>cloud.piranha.http</groupId> <artifactId>piranha-http-impl</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> </plugins> </build> </project>