Skip to content

Commit 252bbd1

Browse files
authored
[9.1] Use consistent version of asm for painless and tools (#135089)
1 parent 6e5d99a commit 252bbd1

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

libs/entitlement/tools/public-callers-finder/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ repositories {
4646

4747
dependencies {
4848
compileOnly(project(':libs:core'))
49-
implementation 'org.ow2.asm:asm:9.7.1'
50-
implementation 'org.ow2.asm:asm-util:9.7.1'
49+
implementation 'org.ow2.asm:asm:9.8'
50+
implementation 'org.ow2.asm:asm-util:9.8'
5151
implementation(project(':libs:entitlement:tools:common'))
5252
}
5353

libs/entitlement/tools/securitymanager-scanner/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ repositories {
4646

4747
dependencies {
4848
compileOnly(project(':libs:core'))
49-
implementation 'org.ow2.asm:asm:9.7.1'
50-
implementation 'org.ow2.asm:asm-util:9.7.1'
49+
implementation 'org.ow2.asm:asm:9.8'
50+
implementation 'org.ow2.asm:asm-util:9.8'
5151
implementation(project(':libs:entitlement:tools:common'))
5252
}
5353

modules/lang-expression/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ dependencies {
1919
api "org.apache.lucene:lucene-expressions:${versions.lucene}"
2020
runtimeOnly "org.apache.lucene:lucene-codecs:${versions.lucene}"
2121
runtimeOnly "org.antlr:antlr4-runtime:${versions.antlr4}"
22-
runtimeOnly 'org.ow2.asm:asm:7.2'
23-
runtimeOnly 'org.ow2.asm:asm-commons:7.2'
24-
runtimeOnly 'org.ow2.asm:asm-tree:7.2'
25-
runtimeOnly 'org.ow2.asm:asm-analysis:7.2'
22+
runtimeOnly 'org.ow2.asm:asm:9.8'
23+
runtimeOnly 'org.ow2.asm:asm-commons:9.8'
24+
runtimeOnly 'org.ow2.asm:asm-tree:9.8'
25+
runtimeOnly 'org.ow2.asm:asm-analysis:9.8'
2626
}
2727
restResources {
2828
restApi {

modules/lang-painless/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ configurations {
3737

3838
dependencies {
3939
api "org.antlr:antlr4-runtime:${versions.antlr4}"
40-
api 'org.ow2.asm:asm-util:7.2'
41-
api 'org.ow2.asm:asm-tree:7.2'
42-
api 'org.ow2.asm:asm-commons:7.2'
43-
api 'org.ow2.asm:asm-analysis:7.2'
44-
api 'org.ow2.asm:asm:7.2'
40+
api 'org.ow2.asm:asm-util:9.8'
41+
api 'org.ow2.asm:asm-tree:9.8'
42+
api 'org.ow2.asm:asm-commons:9.8'
43+
api 'org.ow2.asm:asm-analysis:9.8'
44+
api 'org.ow2.asm:asm:9.8'
4545
spi project('spi')
4646
clusterModules project(':modules:mapper-extras')
4747
}

0 commit comments

Comments
 (0)