-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into OkHttp-warning
- Loading branch information
Showing
410 changed files
with
9,655 additions
and
5,975 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"image": "mcr.microsoft.com/devcontainers/java:21-bookworm", | ||
"features": { | ||
"ghcr.io/devcontainers/features/java:1": { | ||
"version": "17" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"java.server.launchMode": "Standard" | ||
}, | ||
"extensions": [ | ||
"vscjava.vscode-java-pack", | ||
"vscjava.vscode-gradle" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,50 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
"config:recommended", | ||
":dependencyDashboard", | ||
"schedule:weekly" | ||
], | ||
"labels": ["renovate"], | ||
"labels": [ | ||
"renovate" | ||
], | ||
"ignoreDeps": [ | ||
"com.squareup.okhttp3:okhttp", | ||
"com.squareup.okhttp3:okhttp-tls", | ||
"com.squareup.okhttp3:mockwebserver" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": ["org.objenesis:objenesis"], | ||
"groupName": "bnd", | ||
"matchPackageNames": [ | ||
"/biz.*/" | ||
] | ||
}, | ||
{ | ||
"groupName": "graalvm", | ||
"matchPackageNames": [ | ||
"/org.graalvm.*/" | ||
] | ||
}, | ||
{ | ||
"matchPackageNames": [ | ||
"org.objenesis:objenesis" | ||
], | ||
"allowedVersions": "<=2.6" | ||
}, | ||
{ | ||
"matchPackageNames": ["org.eclipse.jetty:jetty-client"], | ||
"matchPackageNames": [ | ||
"org.eclipse.jetty:jetty-client" | ||
], | ||
"allowedVersions": "<10.0", | ||
"description": "JDK 11 requirement" | ||
}, | ||
{ | ||
"matchPackageNames": ["org.junit-pioneer:junit-pioneer"], | ||
"matchPackageNames": [ | ||
"org.junit-pioneer:junit-pioneer" | ||
], | ||
"allowedVersions": "<2.0.0", | ||
"description": "JDK 11 requirement" | ||
}, | ||
{ | ||
"matchPackageNames": ["gradle"], | ||
"allowedVersions": "<8.0", | ||
"description": "Recent release, not compatible with pinned AGP and Kotlin versions yet. Wait for AGP 8?" | ||
}, | ||
{ | ||
"matchPackageNames": ["com.android.tools.build:gradle"], | ||
"allowedVersions": "<7.4", | ||
"description": "Recent release, no compatible Intellij stable release (2023.1)" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"java.compile.nullAnalysis.mode": "automatic" | ||
} |
Oops, something went wrong.