avaje-http-client-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.avaje</groupId> <artifactId>avaje-http-client-generator</artifactId> <version>3.2</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/maven-v4_0_0.xsd"> <parent> <artifactId>avaje-http-parent</artifactId> <groupId>io.avaje</groupId> <version>3.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>avaje-http-client-generator</artifactId> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <useModulePath>false</useModulePath> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.avaje</groupId> <artifactId>avaje-http-client</artifactId> <version>3.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>avaje-applog</artifactId> <groupId>io.avaje</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>avaje-http-api</artifactId> <version>3.2</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>avaje-prisms</artifactId> <version>1.41</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>junit</artifactId> <version>1.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>org.assertj</groupId> </exclusion> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <maven.compiler.release>11</maven.compiler.release> </properties> </project>