java-http
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.fusionauth</groupId> <artifactId>java-http</artifactId> <version>0.4.0-RC.4</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.fusionauth</groupId> <artifactId>java-http</artifactId> <version>0.4.0-RC.4</version> <packaging>jar</packaging> <name>Java HTTP library (client and server)</name> <description>An HTTP library for Java that provides a lightweight server (currently) and client (eventually) both with a goal of high-performance and simplicity</description> <url>https://github.com/FusionAuth/java-http</url> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <developers> <developer> <name>Brian Pontarelli</name> <email>brian@fusionauth.io</email> <organization>FusionAuth</organization> <organizationUrl>https://fusionauth.io</organizationUrl> </developer> <developer> <name>Daniel DeGroff</name> <email>daniel@fusionauth.io</email> <organization>FusionAuth</organization> <organizationUrl>https://fusionauth.io</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:ssh://github.com:fusionauth/java-http</connection> <url>https://github.com/fusionauth/java-http</url> </scm> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> </properties> <!-- Testing Dependencies --> <dependencies> <dependency> <groupId>com.inversoft</groupId> <artifactId>jackson5</artifactId> <version>3.0.1</version> <type>jar</type> <scope>test</scope> <optional>false</optional> </dependency> <dependency> <groupId>com.inversoft</groupId> <artifactId>restify</artifactId> <version>4.2.1</version> <type>jar</type> <scope>test</scope> <optional>false</optional> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.10.2</version> <type>jar</type> <scope>test</scope> <optional>false</optional> </dependency> </dependencies> <build> <directory>build</directory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <compilerArgs> <arg>--add-exports</arg> <arg>java.base/sun.security.x509=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>java.base/sun.security.util=ALL-UNNAMED</arg> <arg>-XDignore.symbol.file</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.0</version> <configuration> <argLine>--add-exports java.base/sun.security.x509=ALL-UNNAMED --add-exports java.base/sun.security.util=ALL-UNNAMED</argLine> <properties> <property> <name>listener</name> <value>io.fusionauth.http.BaseTest$TestListener</value> </property> </properties> <excludedGroups>performance,timeouts</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.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.4.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <skip>false</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>