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