| GroupId | GroupIdorg.springframework | 
    
|---|---|
| ArtifactId | ArtifactIdspring-expression | 
    
| Version | Version5.2.21.RELEASE | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.springframework/spring-expression/ -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-expression</artifactId>
    <version>5.2.21.RELEASE</version>
</dependency>
                // https://jarcasting.com/artifacts/org.springframework/spring-expression/
implementation 'org.springframework:spring-expression:5.2.21.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework/spring-expression/
implementation ("org.springframework:spring-expression:5.2.21.RELEASE")
                'org.springframework:spring-expression:jar:5.2.21.RELEASE'
                <dependency org="org.springframework" name="spring-expression" rev="5.2.21.RELEASE">
  <artifact name="spring-expression" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.springframework', module='spring-expression', version='5.2.21.RELEASE')
)
                libraryDependencies += "org.springframework" % "spring-expression" % "5.2.21.RELEASE"
                [org.springframework/spring-expression "5.2.21.RELEASE"]