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