From 9a5c67fdc88cafc547ea04589b13bf4c729c9f74 Mon Sep 17 00:00:00 2001 From: Lars Grefer Date: Fri, 17 Nov 2023 01:18:36 +0100 Subject: [PATCH] cleanup --- LICENSE | 2 +- README.md | 7 ++++--- okhttp-spring-boot-autoconfigure/.gitignore | 1 - starters/okhttp-spring-boot-starter/build.gradle | 1 - 4 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 okhttp-spring-boot-autoconfigure/.gitignore diff --git a/LICENSE b/LICENSE index 8c07001..195fd60 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016-2020 Lars Grefer +Copyright (c) 2016-2023 Lars Grefer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index adac489..3e51736 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,14 @@ ## Available Starters -- `okhttp3-spring-boot-starter` -- `okhttp-spring-boot-starter` (Alias for `okhttp3-spring-boot-starter`) +- `okhttp4-spring-boot-starter` +- `okhttp5-spring-boot-starter` +- `okhttp-spring-boot-starter` (Alias for `okhttp4-spring-boot-starter`) ## Using Gradle ```gradle dependencies { - compile "io.freefair.okhttp-spring-boot:okhttp3-spring-boot-starter:$version" + compile "io.freefair.okhttp-spring-boot:okhttp-spring-boot-starter:$version" } ``` ## Using Maven diff --git a/okhttp-spring-boot-autoconfigure/.gitignore b/okhttp-spring-boot-autoconfigure/.gitignore deleted file mode 100644 index 6d98fb1..0000000 --- a/okhttp-spring-boot-autoconfigure/.gitignore +++ /dev/null @@ -1 +0,0 @@ -lombok.config diff --git a/starters/okhttp-spring-boot-starter/build.gradle b/starters/okhttp-spring-boot-starter/build.gradle index 0f2e2e5..053cc83 100644 --- a/starters/okhttp-spring-boot-starter/build.gradle +++ b/starters/okhttp-spring-boot-starter/build.gradle @@ -4,6 +4,5 @@ apply plugin: "java-library" description = "OkHttp Spring Boot Starter" dependencies { - api platform(project(":okhttp-spring-boot-dependencies")) api project(':starters:okhttp4-spring-boot-starter') }