Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
37985ec
fix(release): merge main into develop
boxheed Sep 24, 2025
413454f
fix(deps): bump org.apache.commons:commons-lang3 from 3.18.0 to 3.19.0
dependabot[bot] Sep 29, 2025
4cf45a7
Merge pull request #162 from boxheed/dependabot/gradle/develop/org.ap…
boxheed Sep 29, 2025
94fa8e4
fix(deps): bump com.netflix.nebula:nebula-test from 11.2.0 to 11.4.0
dependabot[bot] Oct 6, 2025
2f96769
fix(deps): bump com.gradle.develocity from 4.2 to 4.2.1
dependabot[bot] Oct 6, 2025
bc66916
Merge pull request #164 from boxheed/dependabot/gradle/develop/com.gr…
boxheed Oct 6, 2025
0c1c5d3
Merge pull request #163 from boxheed/dependabot/gradle/develop/com.ne…
boxheed Oct 6, 2025
e19bce1
fix(deps): bump com.squareup.okhttp3:okhttp from 5.1.0 to 5.2.1
dependabot[bot] Oct 13, 2025
22b85d8
Merge pull request #165 from boxheed/dependabot/gradle/develop/com.sq…
boxheed Oct 13, 2025
a979d7a
fix(deps): bump com.netflix.nebula:nebula-test from 11.4.0 to 11.5.0
dependabot[bot] Oct 20, 2025
3aebfb7
fix(deps): bump com.gradle.develocity from 4.2.1 to 4.2.2
dependabot[bot] Oct 20, 2025
2725e37
Merge pull request #167 from boxheed/dependabot/gradle/develop/com.gr…
boxheed Oct 21, 2025
32ece67
Merge pull request #166 from boxheed/dependabot/gradle/develop/com.ne…
boxheed Oct 21, 2025
b37b63d
fix(deps): bump com.netflix.nebula:nebula-test from 11.5.0 to 11.6.3
dependabot[bot] Oct 27, 2025
79bdb28
Merge pull request #168 from boxheed/dependabot/gradle/develop/com.ne…
boxheed Oct 31, 2025
d5630d9
chore(ci): upgrade gradle to 9.2.0
boxheed Nov 1, 2025
cc1585c
fix(deps): bump com.netflix.nebula:nebula-test from 11.6.3 to 11.7.1
dependabot[bot] Nov 3, 2025
e9267a6
fix(deps): bump com.squareup.okhttp3:okhttp from 5.2.1 to 5.3.0
dependabot[bot] Nov 3, 2025
4569b73
Merge pull request #170 from boxheed/dependabot/gradle/develop/com.sq…
boxheed Nov 3, 2025
01ee836
Merge pull request #169 from boxheed/dependabot/gradle/develop/com.ne…
boxheed Nov 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ sourceSets {
dependencies {
api gradleApi()
api localGroovy()
implementation 'com.squareup.okhttp3:okhttp:5.1.0'
implementation 'com.squareup.okhttp3:okhttp:5.3.0'
implementation 'org.kohsuke:github-api:1.330'
implementation 'org.apache.tika:tika-core:3.2.3'

//########################################################
//overriding the provided versions of these libraries as
//they are not compatible with the dependency check plugin
implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'org.apache.commons:commons-lang3:3.19.0'
implementation 'org.apache.commons:commons-text:1.14.0'
//########################################################

Expand Down
6 changes: 3 additions & 3 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ repositories {

dependencies {

implementation 'com.squareup.okhttp3:okhttp:5.1.0'
implementation 'com.squareup.okhttp3:okhttp:5.3.0'
implementation 'org.kohsuke:github-api:1.330'
implementation 'org.apache.tika:tika-core:3.2.3'

//########################################################
//overriding the provided versions of these libraries as
// they are not compatible with the dependency check plugin
implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'org.apache.commons:commons-lang3:3.19.0'
implementation 'org.apache.commons:commons-text:1.14.0'
//########################################################


testImplementation 'com.netflix.nebula:nebula-test:11.2.0'
testImplementation 'com.netflix.nebula:nebula-test:11.7.1'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 0 additions & 3 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include 'services:webservice'

plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
id "com.gradle.develocity" version "4.2"
id "com.gradle.develocity" version "4.2.2"
}

rootProject.name = 'gradle-github-release-plugin'
Loading