Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/copilot-instrucciones.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copilot Instructions

**Before committing any changes to this repository, you must run the Spotless formatting task using Gradle.**

This ensures that all code adheres to the project's formatting standards and helps maintain a clean, consistent codebase.

## How to Apply Spotless Formatting

Run the following command in the project root:

```bash
gradle spotlessJavaApply
```

Make sure to stage and commit any formatting changes that result from this command.

---

**Summary:**
- Always run `gradle spotlessApply` before every commit.
- Review and include any formatting changes in your commit.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ plugins {

group = 'pe.edu.utp'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '21'
sourceCompatibility = '21'
targetCompatibility = '21'

configurations {
compileOnly {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists