freeway-ext
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-ext</artifactId>
<version>1.3.9</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>com.jujin8.freeway</groupId>
<artifactId>freeway-parent</artifactId>
<version>1.3.9</version>
</parent>
<artifactId>freeway-ext</artifactId>
<packaging>pom</packaging>
<name>Freeway :: Extensions</name>
<description>
Adapter modules for the Freeway framework.
Each module pulls in a specific third-party dependency on top of the lightweight core.
</description>
<url>https://github.com/dzb/freeway-ext</url>
<scm>
<connection>scm:git:https://github.com/dzb/freeway-ext.git</connection>
<developerConnection>scm:git:https://github.com/dzb/freeway-ext.git</developerConnection>
<url>https://github.com/dzb/freeway-ext</url>
</scm>
<properties>
<freeway.version>1.3.9</freeway.version>
<!-- Third-party dependency versions, centralized here so all modules
stay in sync. Latest stable versions as of 2026-08. -->
<undertow.version>2.4.2.Final</undertow.version>
<jetty.version>12.1.12</jetty.version>
<kafka.version>4.3.1</kafka.version>
<hikari.version>7.1.0</hikari.version>
<sqlite.version>3.53.2.1</sqlite.version>
<h2.version>2.4.240</h2.version>
<robaho.version>1.0.29</robaho.version>
<!-- Overrides of freeway-parent properties: latest JUnit (6.x) and the
latest stable SLF4J 2.x (2.1.0 is still an alpha release). -->
<junit.version>6.1.3</junit.version>
<slf4j.version>2.0.18</slf4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-commons</artifactId>
<version>${freeway.version}</version>
</dependency>
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-ioc</artifactId>
<version>${freeway.version}</version>
</dependency>
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-http</artifactId>
<version>${freeway.version}</version>
</dependency>
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-http</artifactId>
<version>${freeway.version}</version>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-boot</artifactId>
<version>${freeway.version}</version>
</dependency>
<dependency>
<groupId>com.jujin8.freeway</groupId>
<artifactId>freeway-db</artifactId>
<version>${freeway.version}</version>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<version>${undertow.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>jetty-websocket-jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>jetty-http2-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-java-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${hikari.version}</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${sqlite.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.robaho</groupId>
<artifactId>httpserver</artifactId>
<version>${robaho.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>freeway-http-jetty</module>
<module>freeway-http-undertow</module>
<module>freeway-mq-kafka</module>
<module>freeway-db-hikari</module>
<module>freeway-benchmark</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>3.9.0</version>
<configuration>
<java>
<googleJavaFormat>
<version>1.36.1</version>
</googleJavaFormat>
</java>
</configuration>
<executions>
<execution>
<id>spotless-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Central publishing: source and javadoc JARs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<ignorePublishedComponents>true</ignorePublishedComponents>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central-snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>