diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 45337cda3..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,18 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "gradle" - directory: "/" - # schedule to check dependencies - schedule: - interval: "daily" - # limit pr's per day - open-pull-requests-limit: 10 - # target branch for merge requests - target-branch: "develop" - # pr naming, `dependabot/gradle//--` - pull-request-branch-name: - separator: "/" - # default reviewers for new merge requests - reviewers: - - "PhilippHeuer" - - "iProdigy" diff --git a/.github/workflows/gradle-wrapper.yml b/.github/workflows/gradle-wrapper.yml deleted file mode 100644 index 74e5ea4ae..000000000 --- a/.github/workflows/gradle-wrapper.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Update - Gradle Wrapper -on: - workflow_dispatch: - schedule: - # Runs at 06:00 UTC on the 1, 15 and 29th of every month - - cron: 0 6 */14 * * - -jobs: - gradle_update: - name: Gradle Update - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2.3.4 - with: - ref: develop - - name: Gradle Wrapper Check - uses: gradle-update/update-gradle-wrapper-action@v1.0.13 - with: - reviewers: PhilippHeuer, iProdigy - labels: dependencies - base-branch: develop - target-branch: develop diff --git a/build.gradle.kts b/build.gradle.kts index 30666be99..573413c05 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,29 +23,26 @@ allprojects { options { this as StandardJavadocDocletOptions links( - "https://javadoc.io/doc/org.jetbrains/annotations/latest", + "https://javadoc.io/doc/org.jetbrains/annotations/23.0.0", "https://javadoc.io/doc/com.github.ben-manes.caffeine/caffeine/2.9.3", - "https://commons.apache.org/proper/commons-configuration/javadocs/v1.10/apidocs", - "https://javadoc.io/doc/com.github.vladimir-bukhtoyarov/bucket4j-core/7.5.0/", - "https://square.github.io/okhttp/4.x/okhttp/", - "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-core/latest", - "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-handler-simple/latest", - "https://javadoc.io/doc/com.github.philippheuer.credentialmanager/credentialmanager/latest", - "https://javadoc.io/doc/io.github.openfeign/feign-slf4j/latest", - "https://javadoc.io/doc/io.github.openfeign/feign-okhttp/latest", - "https://javadoc.io/doc/io.github.openfeign/feign-jackson/latest", - "https://javadoc.io/doc/io.github.openfeign/feign-hystrix/latest", - "https://javadoc.io/doc/io.github.openfeign/feign-hystrix/latest", - "https://netflix.github.io/Hystrix/javadoc/", - "https://takahikokawasaki.github.io/nv-websocket-client/", - "https://commons.apache.org/proper/commons-io/apidocs/", - "https://commons.apache.org/proper/commons-lang/apidocs/", - "https://www.javadoc.io/doc/org.slf4j/slf4j-api/1.7.36", - "https://fasterxml.github.io/jackson-databind/javadoc/2.13/", - "https://fasterxml.github.io/jackson-core/javadoc/2.13/", - "https://fasterxml.github.io/jackson-annotations/javadoc/2.13/", - "https://fasterxml.github.io/jackson-modules-java8/javadoc/datetime/2.13/", - "https://projectlombok.org/api/", + "https://javadoc.io/doc/commons-configuration/commons-configuration/1.10", + "https://javadoc.io/doc/com.github.vladimir-bukhtoyarov/bucket4j-core/7.5.0", + // "https://javadoc.io/doc/com.squareup.okhttp3/okhttp/4.9.3", // blocked by https://github.com/square/okhttp/issues/6450 + "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-core/0.10.0", + "https://javadoc.io/doc/com.github.philippheuer.events4j/events4j-handler-simple/0.10.0", + "https://javadoc.io/doc/com.github.philippheuer.credentialmanager/credentialmanager/0.1.2", + "https://javadoc.io/doc/io.github.openfeign/feign-slf4j/11.8", + "https://javadoc.io/doc/io.github.openfeign/feign-okhttp/11.8", + "https://javadoc.io/doc/io.github.openfeign/feign-jackson/11.8", + "https://javadoc.io/doc/io.github.openfeign/feign-hystrix/11.8", + "https://javadoc.io/doc/org.slf4j/slf4j-api/1.7.36", + "https://javadoc.io/doc/com.neovisionaries/nv-websocket-client/2.14", + "https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-databind/2.13.3", + "https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-core/2.13.3", + "https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-annotations/2.13.3", + "https://javadoc.io/doc/commons-io/commons-io/2.11.0", + "https://javadoc.io/doc/org.apache.commons/commons-lang3/3.12.0", + "https://javadoc.io/doc/org.projectlombok/lombok/1.18.24", "https://twitch4j.github.io/javadoc" ) locale = "en" diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..e00674c16 --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "github>twitch4j/renovate-config:twitch4j" + ] +}