Skip to content

Commit

Permalink
Avoid latest versions of gradle and AGP (#7713)
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke authored Feb 18, 2023
1 parent a82f433 commit 40b7d03
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,23 @@
},
{
"matchPackageNames": ["org.eclipse.jetty:jetty-client"],
"allowedVersions": "<10.0"
"allowedVersions": "<10.0",
"description": "JDK 11 requirement"
},
{
"matchPackageNames": ["org.junit-pioneer:junit-pioneer"],
"allowedVersions": "<2.0.0"
"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)"
}
]
}

0 comments on commit 40b7d03

Please sign in to comment.