okhttp3-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.freefair.okhttp-spring-boot</groupId> <artifactId>okhttp3-spring-boot-starter</artifactId> <version>3.0.0-m1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.freefair.okhttp-spring-boot</groupId> <artifactId>okhttp3-spring-boot-starter</artifactId> <version>3.0.0-m1</version> <name>OkHttp 3 Spring Boot Starter</name> <description>OkHttp 3 Spring Boot Starter</description> <url>https://github.com/freefair/okhttp-spring-boot</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>larsgrefer</id> <name>Lars Grefer</name> <email>github@larsgrefer.de</email> <timezone>Europe/Berlin</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/freefair/okhttp-spring-boot.git</connection> <developerConnection>scm:git:git@github.com:freefair/okhttp-spring-boot.git</developerConnection> <url>https://github.com/freefair/okhttp-spring-boot</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/freefair/okhttp-spring-boot/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/freefair/okhttp-spring-boot/actions</url> </ciManagement> <dependencyManagement> <dependencies> <dependency> <groupId>io.freefair.okhttp-spring-boot</groupId> <artifactId>okhttp-spring-boot-dependencies</artifactId> <version>3.0.0-m1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.freefair.okhttp-spring-boot</groupId> <artifactId>okhttp-spring-boot-autoconfigure</artifactId> <version>3.0.0-m1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <scope>compile</scope> </dependency> </dependencies> </project>