Skip to content

Commit 979d662

Browse files
authored
Merge pull request #3495 from AtlasOfLivingAustralia/dev
Preparing v4.3
2 parents 3abb94a + 6b202f0 commit 979d662

File tree

125 files changed

+52615
-1428
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+52615
-1428
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v3
2222

23-
- name: Set up JDK 11
23+
- name: Set up JDK 17
2424
uses: actions/setup-java@v3
2525
with:
26-
java-version: '11'
26+
java-version: '17'
2727
distribution: 'adopt'
2828

2929
- name: Install nodejs

build.gradle

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ plugins {
2121
id 'jacoco'
2222
id 'com.williamhill.wiremock' version '0.4.1'
2323
}
24+
sourceCompatibility = '11'
25+
targetCompatibility = '17'
2426

2527
version "$meritVersion"
2628
group "au.org.ala"
@@ -152,6 +154,17 @@ dependencies {
152154
implementation "org.commonmark:commonmark:0.24.0"
153155
implementation "com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer:20240325.1"
154156

157+
// Used to get a token that can be used to access the BDR API hosted in Azure
158+
implementation platform('com.azure:azure-sdk-bom:1.2.28')
159+
160+
implementation 'com.azure:azure-identity'
161+
implementation 'com.azure:azure-storage-blob'
162+
163+
// Used to access the Cognito Identity Pool as tokens from the user pool
164+
// don't have an audience claim which is required by Azure
165+
implementation(platform("software.amazon.awssdk:bom:2.27.21"))
166+
implementation 'software.amazon.awssdk:cognitoidentity'
167+
155168
compileOnly "io.micronaut:micronaut-inject-groovy"
156169
console "org.grails:grails-console"
157170
profile "org.grails.profiles:web"
@@ -188,7 +201,7 @@ dependencies {
188201
providedCompile "io.methvin:directory-watcher:0.4.0"
189202

190203
if (!Boolean.valueOf(inplace)) {
191-
implementation "org.grails.plugins:ecodata-client-plugin:7.2.1"
204+
implementation "org.grails.plugins:ecodata-client-plugin:8.0-SNAPSHOT"
192205
}
193206
}
194207

0 commit comments

Comments
 (0)