Skip to content

Commit 4b245c5

Browse files
committed
fix asm version
1 parent 13335d7 commit 4b245c5

File tree

6 files changed

+27
-17
lines changed

6 files changed

+27
-17
lines changed

gradle/verification-metadata.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4596,6 +4596,11 @@
45964596
<sha256 value="f885be71b5c90556f5f1ad1c4f9276b29b96057c497d46666fe4ddbec3cb43c6" origin="Generated by Gradle"/>
45974597
</artifact>
45984598
</component>
4599+
<component group="org.ow2.asm" name="asm-util" version="9.8">
4600+
<artifact name="asm-util-9.8.jar">
4601+
<sha256 value="8ba0460ecb28fd0e2980e5f3ef3433a513a457bc077f81a53bdc75b587a08d15" origin="Generated by Gradle"/>
4602+
</artifact>
4603+
</component>
45994604
<component group="org.reactivestreams" name="reactive-streams" version="1.0.4">
46004605
<artifact name="reactive-streams-1.0.4.jar">
46014606
<sha256 value="f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28" origin="Generated by Gradle"/>
@@ -4641,6 +4646,11 @@
46414646
<sha256 value="18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79" origin="Generated by Gradle"/>
46424647
</artifact>
46434648
</component>
4649+
<component group="org.slf4j" name="slf4j-api" version="1.7.32">
4650+
<artifact name="slf4j-api-1.7.32.jar">
4651+
<sha256 value="3624f8474c1af46d75f98bc097d7864a323c81b3808aa43689a6e1c601c027be" origin="Generated by Gradle"/>
4652+
</artifact>
4653+
</component>
46444654
<component group="org.slf4j" name="slf4j-api" version="2.0.17">
46454655
<artifact name="slf4j-api-2.0.17.jar">
46464656
<sha256 value="7b751d952061954d5abfed7181c1f645d336091b679891591d63329c622eb832" origin="Generated by Gradle"/>

libs/entitlement/asm-provider/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ dependencies {
1313
compileOnly project(':libs:entitlement')
1414
compileOnly project(':libs:core')
1515
compileOnly project(':libs:logging')
16-
implementation 'org.ow2.asm:asm:9.7.1'
17-
implementation 'org.ow2.asm:asm-util:9.7.1'
18-
implementation 'org.ow2.asm:asm-tree:9.7.1'
19-
implementation 'org.ow2.asm:asm-analysis:9.7.1'
16+
implementation 'org.ow2.asm:asm:9.8'
17+
implementation 'org.ow2.asm:asm-util:9.8'
18+
implementation 'org.ow2.asm:asm-tree:9.8'
19+
implementation 'org.ow2.asm:asm-analysis:9.8'
2020
testImplementation project(":test:framework")
2121
testImplementation project(":libs:entitlement:bridge")
2222
}

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)