/build-tool-comparison

Some code meant to illustrate how different build system perform the same things.

Primary LanguageJavaApache License 2.0Apache-2.0

Build tool comparison

This is just a collection of projects to illustrate how different build systems perform the same thing.

Hello World!

Each command below will create a jar in the default build directory, and run it to echo "Hello World!" on the command line.

  • Ant: ant run
  • Maven: mvn verify
  • Gradle: gradle run