xlet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ralfspoeth.xldr</groupId>
<artifactId>xlet</artifactId>
<version>0.53</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>io.github.ralfspoeth.xldr</groupId>
<artifactId>xldr</artifactId>
<version>0.53</version>
</parent>
<artifactId>xlet</artifactId>
<name>xldr xlet</name>
<!--
Published since 0.36. It was not before, and that was a decision rather
than an oversight: the README argued a servlet is a thing to read and
adapt rather than to depend on, which held while this was one class and a
doPost. It carries a spec registry, a concurrency limit, an MXBean and
the target resolution now, and a deployment that copies all of that has
forked it - and a fork receives no fix made here.
-->
<!--
No failsafe declaration, because there is no *IT here to run: the servlet's
container test is XldrServletIT in the `it` module. That is also why there
is no Jetty below - this module is published, and a consumer reading its
pom should find the servlet API and xldr, not a container.
-->
<dependencies>
<!-- Greyson -->
<dependency>
<groupId>io.github.ralfspoeth</groupId>
<artifactId>json</artifactId>
</dependency>
<!-- nullness -->
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
<!-- the servlet, supplied by the container at runtime. Not managed by
the parent, this module being the only one that has an opinion -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0</version>
<scope>provided</scope>
</dependency>
<!-- xldr -->
<dependency>
<groupId>io.github.ralfspoeth.xldr</groupId>
<artifactId>ia</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.ralfspoeth.xldr</groupId>
<artifactId>ldr</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<!-- one test loads for real, which needs a database and an adapter to
read with; the refusals need neither -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.ralfspoeth.xldr</groupId>
<artifactId>csv</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>