diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6c32dd..0316917 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'adopt' cache: gradle diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35ec0ac..c305cd2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'adopt' cache: gradle diff --git a/build.gradle b/build.gradle index a6fdead..4648a28 100644 --- a/build.gradle +++ b/build.gradle @@ -12,8 +12,8 @@ repositories { dependencies { implementation 'com.squareup:javapoet:1.13.0' - compileOnly 'org.projectlombok:lombok:1.18.28' - annotationProcessor 'org.projectlombok:lombok:1.18.28' + compileOnly 'org.projectlombok:lombok:1.18.38' + annotationProcessor 'org.projectlombok:lombok:1.18.38' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2' @@ -31,7 +31,7 @@ patchPluginXml {
  • 1.0.0 - Version initiale du générateur d'API
  • """) - sinceBuild.set("221") // Compatible avec 2022.1+ + sinceBuild.set("231") // Compatible avec 2023.1+ untilBuild.set("233.*") // Compatible jusqu'à 2023.3.x } @@ -40,6 +40,6 @@ test { } java { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 }