| GroupId | GroupIdorg.springframework | 
|---|---|
| ArtifactId | ArtifactIdspring-core | 
| Version | Version3.1.2.RELEASE | 
| Type | Typejar | 
| Filename | Size | 
|---|---|
| spring-core-3.1.2.RELEASE.pom | |
| spring-core-3.1.2.RELEASE.jar | 439 KB | 
| spring-core-3.1.2.RELEASE-sources.jar | 437 KB | 
| Browse | 
<!-- https://jarcasting.com/artifacts/org.springframework/spring-core/ -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>3.1.2.RELEASE</version>
</dependency>// https://jarcasting.com/artifacts/org.springframework/spring-core/
implementation 'org.springframework:spring-core:3.1.2.RELEASE'// https://jarcasting.com/artifacts/org.springframework/spring-core/
implementation ("org.springframework:spring-core:3.1.2.RELEASE")'org.springframework:spring-core:jar:3.1.2.RELEASE'<dependency org="org.springframework" name="spring-core" rev="3.1.2.RELEASE">
  <artifact name="spring-core" type="jar" />
</dependency>@Grapes(
@Grab(group='org.springframework', module='spring-core', version='3.1.2.RELEASE')
)libraryDependencies += "org.springframework" % "spring-core" % "3.1.2.RELEASE"[org.springframework/spring-core "3.1.2.RELEASE"]