,-----. ,--.,--. ,--. ,-----.,--. ,--.
| |) /_ ,--.,--.`--'| | ,-| |' .--./| | | |
| .-. \| || |,--.| |' .-. || | | | | | Built by the community, for the community
| '--' /' '' '| || |\ `-' |' '--'\| '--.| |
`------' `----' `--'`--' `---' `-----'`-----'`--'
Welcome to BuildCLI - Java Project Management!
BuildCLI is a command-line interface (CLI) tool for managing and automating common tasks in Java project development. It allows you to create, compile, manage dependencies, and run Java projects directly from the terminal, simplifying the development process.
- Repository: https://github.com/BuildCLI/BuildCLI
- License: MIT
- Initialize Project: Creates the basic structure of directories and files for a Java project.
- Compile Project: Compiles the project source code using Maven.
- Add Dependency: Adds new dependencies to the
pom.xml. - Remove Dependency: Remove dependencies from
pom.xml. - Document Code: [Beta] Generates documentation for a Java file using AI.
- Manage Configuration Profiles: Creates specific configuration files for profiles (
application-dev.properties,application-test.properties, etc.). - Run Project: Starts the project directly from the CLI using Spring Boot.
- Dockerize Project: Generates a Dockerfile for the project, allowing easy containerization.
- Build and Run Docker Container: Builds and runs the Docker container using the generated Dockerfile.
- CI/CD Integration: Automatically generates configuration files por CI/CD tools (e.g., Jenkins, GitHub Actions) and triggers pipelines based on project changes.
- Changelog Generation: Automatically generates a structured changelog by analyzing the Git commit history, facilitating the understanding of changes between releases.
- Orchestration Commands: BuildCLI now includes orchestration commands to automate Docker Compose configuration generation and manage container lifecycles.
Installing from script
[!TIP] This installation method requires git and maven to be installed on your system.
-
Script Installation: Download the install.sh or install.bat file and execute.
- On a Unix-like system (Linux, macOS), simply give execution permission to
install.shand run it:
sudo chmod +x install.sh ./install.sh
- On Windows: Run
install.batby double-clicking it or executing the following command in the Command Prompt (cmd):
install.bat
- On a Unix-like system (Linux, macOS), simply give execution permission to
Now BuildCLI is ready to use. Test the buildcli command in the terminal.
Installing from Releases
[!TIP] You can build the project with maven and run the wrapper script to start the CLI so that you can use the CLI without
java -jar buildcli.jarcommand.
- Download the latest version of BuildCLI.
- Move both
buildcli.jarandbuildcli.batto your Windows directory. (UsuallyC://Windows) - If you do not have access to
C://Windows, you can place the two files anywhere and add that directory to your Environment Variables System PATH variable. - Try running
buildclivia the command prompt.
- Download the latest version of BuildCLI.
- Move both
buildcli.jarandbuildclito/usr/local/bin. (root needed) - Make sure both files are executable. (
chmod +x) - Try running
buildclivia CLI.
- Download the latest version of BuildCLI.
- Move both
buildcli.jarandbuildclito/usr/local/bin. (root needed) - Make sure both files are executable. (
chmod +x) - Try running
buildclivia CLI.
We made a major refactor of the BuildCLI architecture. Please use the buildcli help command to
see all available options. Also, refer to
issue #89 and pull
request #79 for more details.
Creates the basic Java project structure, including src/main/java, pom.xml, and README.md.
You can specify a project name to dynamically set the package structure and project artifact.
- To initialize a project with a specific name:
buildcli project init MyProjectThis will create the project structure with MyProject as the base package name, resulting in a
directory like src/main/java/org/myproject.
- To initialize a project without specifying a name:
buildcli project initThis will create the project structure with buildcli as the base package name, resulting in a
directory like src/main/java/org/buildcli.
Compiles the Java project using Maven:
buildcli project build --compileAdds a dependency to the project in the groupId:artifactId format. You can also specify a version
using the format groupId:artifactId:version. If no version is specified, the dependency will
default to the latest version available.
- To add a dependency with the latest version:
buildcli project add dependency org.springframework:spring-core- To add a dependency with a specified version:
buildcli p a d org.springframework:spring-core:5.3.21After executing these commands, the dependency will be appended to your pom.xml file under the
<dependencies> section.
Creates a configuration file with the specified profile, for example, application-dev.properties:
buildcli project add profile devRuns the Java project using Spring Boot:
buildcli runAutomatically generates inline documentation for a Java file using AI:
# File or directory
buildcli ai code document File.java This command sends the specified Java file to the local Ollama server, which generates documentation and comments directly within the code. The modified file with documentation will be saved back to the same location.
Sets the active environment profile, saving it to the environment.config file. The profile is
referenced during project execution, ensuring that the correct configuration is loaded.
buildcli p set env devAfter running this command, the active profile is set to dev, and the environment.config file is
updated accordingly.
With the --set-environment functionality, you can set the active environment profile. When running
the project with buildcli --run, the active profile will be displayed in the terminal.
This command generates a Dockerfile for your Java project, making it easier to containerize your
application.
buildcli p add dockerfileThis command automatically builds and runs the Docker container for you. After running the command, the Docker image will be created, and your project will run inside the container.
buildcli project run dockerGenerates configuration files for CI/CD tools and prepares the project for automated pipelines. Supports Jenkins, Gitlab and GitHub Actions.
buildcli project add pipeline githubbuildcli project add pipeline gitlabbuildcli project add pipeline jenkinsBuildCLI now includes an automatic changelog generation feature that analyzes your Git commit history and produces a structured changelog. This helps developers and end-users easily track changes between releases.
To generate a changelog, run:
buildcli changelog [OPTIONS]Or use the alias:
buildcli cl [OPTIONS]-
--version, -v <version>:Specify the release version for the changelog. If omitted, BuildCLI attempts to detect the latest Git tag. If no tag is found, it defaults to "Unreleased". -
--format, -f <format>:Specify the output format. Supported formats:- markdown (default)
- html
- json
-
--output, -o <file>:Specify the output file name. If not provided, defaults to CHANGELOG.. -
--include, -i <commit types>:Provide a comma-separated list of commit types to include (e.g., feat,fix,docs,refactor).
buildcli changelog --version v1.0.0 --format markdown --include feat,fix --output CHANGELOG.mdbuildcli changelog -v v1.0.0 -f markdown -i feat,fix -o CHANGELOG.mdBuildCLI now includes orchestration commands to automate Docker compose configuration generation and manage container lifecycles. Below, you'll find a Quick Start Guide and usage examples for the new feature.
buildcli project add dockerComposeor
buildcli p add dcThis command creates a docker-compose.yml file with a primary service for your java application, using the image built from the enhanced Dockerfile.
You can customize ports, volumes, and resource limits (CPU and memory) using CLI flag. For example:
-
--port, -p <ports>:Specify the ports to expose for the container. Format:<host_port>:<container_port>. -
--volume, -v <volume>:Specify the volume to mount for the container. Format:<host_path>:<container_path>. -
--cpu, -c <cpu_limit>:Specify the CPU limit for the container. -
--memory, -m <memory_limit>:Specify the memory limit for the container. Format:<value><unit>(e.g.,512m). -
--dockerfile, -d <dockerfile_path>: -
Specify the path to the Dockerfile for the container.
buildcli project add docker-compose --ports 8080:8080 --volumes /data:/app/data --cpu 2 --memory 512m --dockerfile /path/to/Dockerfileor
buildcli p add dc -p 8080:8080 -v /data:/app/data -c 2 -m 512m -d /path/to/DockerfileUse the following command to start the containers:
buildcli run orchrestration upor
buildcli run oc upTo force a rebuild of the images, add the --build flag:
buildcli run orchestration up --buildor
buildcli run oc up -bTo stop the containers, use the following command:
buildcli run orchestration downor
buildcli run oc downTo stop a specific container, use the following command:
buildcli orchestration down --name <container_name>or
buildcli oc down -n <container_name>Ensure you have the Ollama server running locally, as the docs functionality relies on an AI model
accessible via a local API.
You can start the Ollama server by running:
ollama run llama3.2- Jenkins: Ensure Jenkins is installed and accessible in your environment.
- GitHub Actions: Ensure your repository is hosted on GitHub with Actions enabled.
Contributions are welcome! Feel free to open Issues and submit Pull Requests. See the CONTRIBUTING.md file for more details.
Quick steps to contribute:
-
Fork the project.
-
Create a branch for your changes:
git checkout -b feature/my-feature
-
Commit your changes:
git commit -m "My new feature" -
Push to your branch:
git push origin feature/my-feature
-
Open a Pull Request in the main repository.
This project is licensed under the MIT License - see the LICENSE file for details.
To get a deeper understanding of the BuildCLI project structure, key classes, commands, and how to contribute, check out our comprehensive guide in PROJECT_FAMILIARIZATION.md.