s

spring-batch-archetypes

Spring Batch archetypes are simple project templates containing just enough code to get you started running a job. For more detailed examples of using particular features of the framework, look at the Spring Batch Samples project. Currently the archetypes are deployed as regular Maven projects (not archetypes), because of limitations in the archetype plugin (or our understanding of how it works). For most effective use, copy one into Eclipse and use Q4E to manage the dependencies.
文件下载
文件名 操作
spring-batch-archetypes-1.1.1.RELEASE.pom 下载
Apache Maven
<dependency>
  <groupId>org.springframework.batch</groupId>
  <artifactId>spring-batch-archetypes</artifactId>
  <version>1.1.1.RELEASE</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'org.springframework.batch:spring-batch-archetypes:1.1.1.RELEASE'
Gradle Kotlin
implementation("org.springframework.batch:spring-batch-archetypes:1.1.1.RELEASE")
Scala SBT
libraryDependencies += "org.springframework.batch" % "spring-batch-archetypes" % "1.1.1.RELEASE"
Groovy Grape
@Grapes(
  @Grab(group='org.springframework.batch', module='spring-batch-archetypes', version='1.1.1.RELEASE')
)
Apache Ivy
<dependency org="org.springframework.batch" name="spring-batch-archetypes" rev="1.1.1.RELEASE" />
Leiningen
[org.springframework.batch/spring-batch-archetypes "1.1.1.RELEASE"]
Apache Buildr
'org.springframework.batch:spring-batch-archetypes:jar:1.1.1.RELEASE'