An open API service indexing awesome lists of open source software.

https://github.com/mainbank5/java-project


https://github.com/mainbank5/java-project

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Simple Java Gradle Project

This is a basic Java project using Gradle for build automation.

## Prerequisites

- Java 11 or higher
- Git

## Building the project

```bash
./gradlew build
```

## Running the application

```bash
./gradlew run
```

## Running tests

```bash
./gradlew test
```

## Project Structure

- `src/main/java`: Source code
- `src/test/java`: Test code
- `build.gradle`: Gradle build configuration
- `settings.gradle`: Gradle settings

This project is set up with JUnit 5 for testing and configured to use Java 11.