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