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