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