jinahya / hello-world

a simple project prints "hello, world" using various build tools.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hello-world

a simple project prints "hello, world" using various build tools.

scripts

buildall.sh

Builds ant, maven, and gradle in a row.

$ sh ./buildall.sh
...

cleanall.sh

Cleans all build outputs.

$ sh ./cleanall.sh
...
$

Apache Ant

$ ant
...
$ java -jar dst/hello-world.jar
hello, world
$

Apache Maven

$ mvn clean package
$ java -jar target/hello-world-noversion.jar
hello, world
$

Gradle

$ gradle build
...
$ java -jar build/lib/hello-world.jar
hello, world
$

Leiningen

$ lein jar
...
$ java -jar target/hello-world-noversion.jar
hello, world
$

About

a simple project prints "hello, world" using various build tools.

License:Apache License 2.0


Languages

Language:Java 40.7%Language:Clojure 31.8%Language:Shell 27.5%