b

batch-api-parent

Batch processing is a pervasive workload pattern, expressed by a distinct application organization and execution model. It is found across virtually every industry, applied to such tasks as statement generation, bank postings, risk evaluation, credit score calculation, inventory management, portfolio optimization, and on and on. Nearly any bulk processing task from any business sector is a candidate for batch processing. Batch processing is typified by bulk-oriented, non-interactive, background execution. Frequently long- running, it may be data or computationally intensive, execute sequentially or in parallel, and may be initiated through various invocation models, including ad hoc, scheduled, and on-demand. Batch applications have common requirements, including logging, checkpointing, and parallelization. Batch workloads have common requirements, especially operational control, which allow for initiation of, and interaction with, batch instances; such interactions include stop and restart.
https://github.com/eclipse-ee4j/batch-api
The Apache Software License, Version 2.0
Scott Kurz Dan Belina Andrew Mauer
Files download
File Operation
batch-api-parent-2.1.1.pom download
Apache Maven
<dependency>
  <groupId>jakarta.batch</groupId>
  <artifactId>batch-api-parent</artifactId>
  <version>2.1.1</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'jakarta.batch:batch-api-parent:2.1.1'
Gradle Kotlin
implementation("jakarta.batch:batch-api-parent:2.1.1")
Scala SBT
libraryDependencies += "jakarta.batch" % "batch-api-parent" % "2.1.1"
Groovy Grape
@Grapes(
  @Grab(group='jakarta.batch', module='batch-api-parent', version='2.1.1')
)
Apache Ivy
<dependency org="jakarta.batch" name="batch-api-parent" rev="2.1.1" />
Leiningen
[jakarta.batch/batch-api-parent "2.1.1"]
Apache Buildr
'jakarta.batch:batch-api-parent:jar:2.1.1'