From 139d785ce24a38ec6a3b3591af48ea3b28e153ff Mon Sep 17 00:00:00 2001 From: Bethany Seeger Date: Mon, 29 Apr 2024 10:00:17 -0400 Subject: [PATCH] Change dependency for form flow libary back to just using the release. --- build.gradle | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 69b34c86..254a3305 100644 --- a/build.gradle +++ b/build.gradle @@ -44,13 +44,8 @@ dependencies { implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.0' implementation 'com.opencsv:opencsv:5.9' - if (profile == 'dev' || useLocalLibrary == 'true') { - implementation fileTree(dir: "$rootDir/../form-flow/build/libs", include: '*.jar') - println "📦 Using local library" - } else { - implementation "org.codeforamerica.platform:form-flow:${formFlowLibraryVersion}" - println "📚Using form flow library ${formFlowLibraryVersion}" - } + println "📚Using form flow library ${formFlowLibraryVersion}" + implementation "org.codeforamerica.platform:form-flow:${formFlowLibraryVersion}" implementation 'com.amazonaws:aws-encryption-sdk-java:3.0.0' implementation 'org.bouncycastle:bcpg-jdk15on:1.70'