simplebanking

(★ 35)

Case Study - Simple Banking App (Spring Boot, Gradle, JUnit, Integration Test, Postgresql, Prometheus, Grafana, Github Actions, Postman)

File Explorer

  • .gitignore
  • build.gradle
  • docker-compose.yml
  • Dockerfile
  • gradlew
  • gradlew.bat
  • README.md
  • settings.gradle

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

gradle clean

View Details ▼

Delete the build directory and all generated files.

gradle clean

Clean the build directory:

gradle clean build

Clean and then build the project:

gradle :{{subproject}}:clean

Clean a specific subproject in a multi-project build:

🔍

gradle

View Details ▼

An open source build automation system.

gradle build

Compile a package:

gradle build {{[-x|--exclude-task]}} test

Exclude test task:

gradle build --offline

Run in offline mode to prevent Gradle from accessing the network during builds:

// repository documentation