There was an error while loading. Please reload this page.
1 parent 07354d9 commit 5c7a36cCopy full SHA for 5c7a36c
build.gradle
@@ -34,6 +34,7 @@ def mockitoVersion = '3.5.7'
34
def junitVersion = '5.6.2'
35
def jmhVersion = '1.25.1'
36
def agronaVersion = '1.7.0'
37
+def agronaVersionRange = '[1.7,1.8[' // allow any patch release of 1.7.x
38
39
def sbeGroup = 'uk.co.real-logic'
40
def sbeVersion = file('version.txt').text.trim()
@@ -201,7 +202,8 @@ project(':sbe-tool') {
201
202
dependencies {
203
api("org.agrona:agrona") {
204
version {
- strictly(agronaVersion)
205
+ strictly(agronaVersionRange)
206
+ prefer(agronaVersion)
207
}
208
209
testImplementation files('build/classes/java/generated')
0 commit comments