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