skeleton-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.airlift</groupId> <artifactId>skeleton-server</artifactId> <version>341</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.airlift</groupId> <artifactId>airlift</artifactId> <version>341</version> </parent> <artifactId>skeleton-server</artifactId> <name>skeleton-server</name> <description>Airlift - Skeleton server</description> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> <air.test.jvm.additional-arguments>-Djdk.attach.allowAttachSelf=true</air.test.jvm.additional-arguments> <main-class>io.airlift.skeleton.Main</main-class> </properties> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <classifier>classes</classifier> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>bootstrap</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>discovery</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>http-server</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>jaxrs</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>jmx</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>jmx-http</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>json</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>log</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>log-manager</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>node</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>openmetrics</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>tracing</artifactId> </dependency> <dependency> <groupId>org.weakref</groupId> <artifactId>jmxutils</artifactId> </dependency> <!-- used by tests but also needed transitively --> <dependency> <groupId>io.airlift</groupId> <artifactId>http-client</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</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-engine</artifactId> <scope>test</scope> </dependency> </dependencies> </project>