DEV Community

Vijay SRJ
Vijay SRJ

Posted on

jcli, A command line tool for creating Java Applications

Created a tool called jcli to create java applications from command line ..

You can use commands like :

jcli --create-project HelloWorld - to create a new project template

jcli --create-package - to create a new package

jcli --create-class - to create a new class

jcli --create-interface - to create a new interface

jcli --compile - to compile the project

jcli --run --main-class com.hello.world.HelloWorld - to run the project

Here is the demo and other details:

https://fullstackdeveloper.guru/2020/06/26/introducting-jcli-a-command-line-tool-for-creating-java-applications/

Top comments (0)