e

execs

A simple set of classes to execute programmes from the command line, without littering the code with static void main(String[] args). This package addresses the following problem: a package (or a set of packages) contain a number of tools that should be run from outside java, e.g. using a static main() method. Over time, it might (will) be hard to know (or find) all main methods.
https://github.com/vdmeer/execs
Apache 2
Sven van der Meer
Files download
File Operation
execs-0.4.0.jar download
execs-0.4.0.pom download
execs-0.4.0-sources.jar download
Apache Maven
<dependency>
  <groupId>de.vandermeer</groupId>
  <artifactId>execs</artifactId>
  <version>0.4.0</version>
</dependency>
Gradle Groovy
implementation 'de.vandermeer:execs:0.4.0'
Gradle Kotlin
implementation("de.vandermeer:execs:0.4.0")
Scala SBT
libraryDependencies += "de.vandermeer" % "execs" % "0.4.0"
Groovy Grape
@Grapes(
  @Grab(group='de.vandermeer', module='execs', version='0.4.0')
)
Apache Ivy
<dependency org="de.vandermeer" name="execs" rev="0.4.0" />
Leiningen
[de.vandermeer/execs "0.4.0"]
Apache Buildr
'de.vandermeer:execs:jar:0.4.0'