Skip to content

A terminal based tool to create basic Java boilerplate for unix-like OS.

Notifications You must be signed in to change notification settings

Kousik-Ghosh/jbuild

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

jbuild

A terminal based tool to create basic Java boilerplate for unix-like OS.

Command at glance

    $ jbuild <project-name>
    $ cd <project-name>
    $ jbuild run
  • Command to initialize new project
    $ jbuild <project-name>
  • Creates following directory structure on initialization.
  [pwd]
    |
    |_[Project]
        |
        |__src
            |__Runner.java
  • Command to run
    $ cd <project-name>
    $ jbuild run
  • Creates following directory structure on run.
  [pwd]
    |
    |_[Project]
        |
        |__src
        |   |__Runner.java
        |
        |__bin
            |__Runner.class

Building jbuild

Build using the following command and put the executale under your class-path.

    c++ jbuild.cpp -o jbuild  

Note: Multiple *.java files can be ceated under src directory. Corrosponding all *.class files will be created under bin directory.

Pre-requisite:

  • Java JDK & JVM
  • C++ compiler

About

A terminal based tool to create basic Java boilerplate for unix-like OS.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages