b

box

Box is an add-on framework for Java EE applications that performs asynchronous gathering of source data with subsequent processing or transformation of that data into output JSON documents and exposing those documents through a web API. Box excels at maintaining existing documents including keeping them up-to-date in real time and deleting them when required. Box supports aggregating data from multiple sources as well as splitting data into multiple documents. How documents are processed is left up to each application. The web api makes the documents available by ID or by harvesting all documents. Harvests can be filtered using facets and documents can be pared down by requesting only needed fields.
https://bitbucket.org/byuhbll/box
Files download
File Operation
box-1.3.5.pom download
Apache Maven
<dependency>
  <groupId>edu.byu.hbll.box</groupId>
  <artifactId>box</artifactId>
  <version>1.3.5</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'edu.byu.hbll.box:box:1.3.5'
Gradle Kotlin
implementation("edu.byu.hbll.box:box:1.3.5")
Scala SBT
libraryDependencies += "edu.byu.hbll.box" % "box" % "1.3.5"
Groovy Grape
@Grapes(
  @Grab(group='edu.byu.hbll.box', module='box', version='1.3.5')
)
Apache Ivy
<dependency org="edu.byu.hbll.box" name="box" rev="1.3.5" />
Leiningen
[edu.byu.hbll.box/box "1.3.5"]
Apache Buildr
'edu.byu.hbll.box:box:jar:1.3.5'