Compare commits

...

7 Commits

2 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
name: Build name: Build and Test
on: on:
push: pull_request:
branches: branches:
- '*' - master
- '!master'
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -18,5 +18,5 @@ jobs:
java-version: '25' java-version: '25'
cache: 'gradle' cache: 'gradle'
- name: Build - name: Build and Test
run: ./gradlew build --no-daemon run: ./gradlew build --no-daemon
+2 -2
View File
@@ -1,7 +1,7 @@
plugins { plugins {
java java
jacoco jacoco
id("org.springframework.boot") version "4.0.3" id("org.springframework.boot") version "4.0.6"
id("io.spring.dependency-management") version "1.1.7" id("io.spring.dependency-management") version "1.1.7"
} }
@@ -29,7 +29,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator") implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-thymeleaf") implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
implementation("org.springframework.boot:spring-boot-starter-webmvc") implementation("org.springframework.boot:spring-boot-starter-webmvc")
implementation("org.eclipse.jgit:org.eclipse.jgit:7.2.0.202503040940-r") implementation("org.eclipse.jgit:org.eclipse.jgit:7.6.0.202603022253-r")
compileOnly("org.projectlombok:lombok") compileOnly("org.projectlombok:lombok")
developmentOnly("org.springframework.boot:spring-boot-devtools") developmentOnly("org.springframework.boot:spring-boot-devtools")
runtimeOnly("io.micrometer:micrometer-registry-prometheus") runtimeOnly("io.micrometer:micrometer-registry-prometheus")