jquick-curl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.paohaijiao</groupId>
<artifactId>jquick-curl</artifactId>
<version>2.2.0</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>
<parent>
<groupId>io.github.paohaijiao</groupId>
<artifactId>javelin</artifactId>
<version>1.7.1</version>
</parent>
<version>2.2.0</version>
<artifactId>jquick-curl</artifactId>
<name>jquick-curl</name>
<properties>
<jquick-json.version>1.3.0</jquick-json.version>
<hutool.version>5.4.2</hutool.version>
<guava.version>31.1-jre</guava.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-pool2.version>2.12.0</commons-pool2.version>
<antlr.version>4.13.2</antlr.version>
<com.fasterxml.version>2.15.2</com.fasterxml.version>
<groovy.version>3.0.8</groovy.version>
<lombok.version>1.18.30</lombok.version>
<okhttp.version>4.10.0</okhttp.version>
<cglib.version>3.3.0</cglib.version>
<druid.version>1.1.4</druid.version>
<yaml.version>2.4</yaml.version>
<junit.version>4.11</junit.version>
<poi.version>5.2.3</poi.version>
<batik.version>1.12</batik.version>
<itext.svg.version>7.2.5</itext.svg.version>
<itext.version>7.2.5</itext.version>
<gson.version>2.8.0</gson.version>
<slf4j-api.version>2.0.9</slf4j-api.version>
<jfree.svg.version>5.0.3</jfree.svg.version>
<antlr4.version>4.13.2</antlr4.version>
</properties>
<dependencies>
<dependency>
<groupId>io.github.paohaijiao</groupId>
<artifactId>jquick-banner</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>io.github.paohaijiao</groupId>
<artifactId>jquick-json</artifactId>
<version>${jquick-json.version}</version>
</dependency>
<dependency>
<groupId>io.github.paohaijiao</groupId>
<artifactId>jquick-xmlProxy</artifactId>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>io.github.paohaijiao</groupId>
<artifactId>javelin-core</artifactId>
<version>1.8.8</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4.version}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>${commons-pool2.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<description>jquick curl is a self-developed high-performance http client library
that focuses on low memory consumption and millisecond level request processing.
it is designed specifically for scenarios that require strict network i/o performance, such as financial payments,
microservice communication, and data collection.
while maintaining simplicity in development,
it provides a java implementation that rivals curl's native performance.
</description>
<url>https://github.com/paohaijiao/jquick-curl</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Martin</name>
<email>goudingcheng@gmail.com</email>
<organization>Sonatype</organization>
<organizationUrl>http://www.sonatype.com</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/paohaijiao/jquick-curl</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
</configuration>
<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.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<compilerArgs>
<arg>-Xlint:none</arg>
</compilerArgs>
<failOnError>false</failOnError>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</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.3.2</version>
<configuration>
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>