Skip to content

Commit fc8f73c

Browse files
author
haileyajohnson
authored
tell project to look for missing 3rd party libs on our own repository (#1364)
1 parent fa321c2 commit fc8f73c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
# test against latest 8, 11, 14 of zulu and temurin java
10-
java-version: [ 8, 11, 14 ]
9+
# test against latest 8, 11 of zulu and temurin java
10+
java-version: [ 8, 11]
1111
java-vendor: [ 'zulu', 'temurin' ]
1212
steps:
1313
- uses: actions/checkout@v4

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ buildscript {
1919
}
2020
// only look for unidata plugin related artifacts from the unidata-all repo
2121
filter {
22+
includeModule 'com.burgstaller', 'okhttp-digest'
23+
includeModule 'org.ysb33r.gradle', 'grolifant'
2224
includeModule 'edu.ucar.unidata.site', 'jekyll-plugin'
2325
includeModule 'edu.ucar.unidata.site', 'jekyll-gems'
2426
includeModule 'edu.ucar.unidata', 'unidata-nexus-gradle'

gradle/root/publishing.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ buildscript {
1717
// only look for unidata plugin related artifacts from the unidata-all repo
1818
filter {
1919
includeModule 'edu.ucar.unidata', 'unidata-nexus-gradle'
20+
includeModule 'com.burgstaller', 'okhttp-digest'
2021
}
2122
}
2223
}

0 commit comments

Comments
 (0)