Skip to content

Commit d7f6d49

Browse files
committed
Merge remote-tracking branch 'origin/update-from-template' into develop
2 parents 1b9db8e + 562b658 commit d7f6d49

File tree

5 files changed

+6
-96
lines changed

5 files changed

+6
-96
lines changed

.github/workflows/broken-links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
GH_TOKEN: ${{ github.token }}
3232

3333
- name: Close issue if everything is fine
34-
if: env.lychee_exit_code == 0 && steps.find-issue.outputs.number != ''
34+
if: steps.lychee.outputs.exit_code == 0 && steps.find-issue.outputs.number != ''
3535
run: gh issue close -r 'not planned' ${{ steps.find-issue.outputs.number }}
3636
env:
3737
GH_TOKEN: ${{ github.token }}
3838

3939
- name: Create Issue From File
40-
if: env.lychee_exit_code != 0
40+
if: steps.lychee.outputs.exit_code != 0
4141
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5
4242
with:
4343
issue-number: ${{ steps.find-issue.outputs.number }}

.github/workflows/sonar.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[![Latest version](https://img.shields.io/jetbrains/plugin/v/23896?logo=jetbrains)](https://plugins.jetbrains.com/plugin/23896)
22
[![Build](https://img.shields.io/github/actions/workflow/status/xdev-software/intellij-plugin-openrewriter/check-build.yml?branch=develop)](https://github.com/xdev-software/intellij-plugin-openrewriter/actions/workflows/check-build.yml?query=branch%3Adevelop)
3-
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=xdev-software_intellij-plugin-openrewriter&metric=alert_status)](https://sonarcloud.io/dashboard?id=xdev-software_intellij-plugin-openrewriter)
43
[![Feel free to leave a rating](https://img.shields.io/jetbrains/plugin/r/rating/23896?style=social&logo=jetbrains&label=Feel%20free%20to%20leave%20a%20rating)](https://plugins.jetbrains.com/plugin/23896/reviews)
54

6-
# <img alt="OpenRewriter Plugin icon light" src="./src/main/resources/META-INF/pluginIcon.svg" height="30"> OpenRewriter X
5+
# <img alt="OpenRewriter Plugin icon light" src="./src/main/resources/META-INF/pluginIcon.svg" width="30"> OpenRewriter X
76

87
Provides support for executing [OpenRewrite](https://github.com/openrewrite) recipes.
98

build.gradle

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ plugins {
33
id 'idea'
44
id 'checkstyle'
55
id 'pmd'
6-
id 'org.jetbrains.intellij.platform' version '2.3.0'
7-
id 'org.sonarqube' version '6.2.0.5505'
6+
id 'org.jetbrains.intellij.platform' version '2.6.0'
87
}
98

109
ext {
@@ -58,7 +57,7 @@ dependencies {
5857
checkstyle "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
5958
pmd "net.sourceforge.pmd:pmd-ant:${pmdVersion}",
6059
"net.sourceforge.pmd:pmd-java:${pmdVersion}"
61-
testImplementation platform('org.junit:junit-bom:5.13.2'),
60+
testImplementation platform('org.junit:junit-bom:5.13.3'),
6261
'org.junit.jupiter:junit-jupiter',
6362
'org.junit.jupiter:junit-jupiter-engine',
6463
'org.assertj:assertj-core:3.27.3'
@@ -141,16 +140,6 @@ test {
141140
useJUnitPlatform()
142141
}
143142

144-
sonar {
145-
properties {
146-
// Ignore sonar warnings globally
147-
property 'sonar.issue.ignore.multicriteria', 'S1948'
148-
// Ignore serialization waring as it's only relevant for RMI which is not used
149-
property 'sonar.issue.ignore.multicriteria.S1948.ruleKey', 'java:S1948'
150-
property 'sonar.issue.ignore.multicriteria.S1948.resourceKey', '**/*.java'
151-
}
152-
}
153-
154143
// Add resources directory because intellij test framework checks there for test resources (instead of build/resources)
155144
sourceSets {
156145
test.output.resourcesDir = "build/classes/java/resources"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)