Skip to content

Commit

Permalink
Tweak to support IDEA 2022.2
Browse files Browse the repository at this point in the history
Signed-off-by: Niels Thykier <[email protected]>
  • Loading branch information
nthykier committed Aug 8, 2022
1 parent 13298c1 commit 665eaee
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
# debpkg Changelog

## [Unreleased]
### Changed
- Bump the compat range for IDE to support 2022.2 at the cost of 2020.1
- Internal/Chore: Update build time dependency on `gradle-intellij-plugin`.
- Internal/Chore: Update the CI dependency on `actions/setup-java` and `actions/cache`.

## [0.0.16]
### Added
Expand Down
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ changelog {
sourceSets["main"].java.srcDir("src/main/gen")

tasks {
wrapper {
gradleVersion = properties("gradleVersion")
}

// Set the JVM compatibility versions
properties("javaVersion").let {
withType<JavaCompile> {
Expand Down
11 changes: 6 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
pluginGroup = com.github.nthykier.debpkg
pluginName = debpkg
pluginVersion = 0.0.16
pluginSinceBuild = 201
pluginUntilBuild = 221.*
pluginSinceBuild = 202
pluginUntilBuild = 222.*

gradleVersion = 7.3

platformType = IC
platformVersion = 2022.1
platformVersion = 2022.2
platformDownloadSources = true

# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
pluginVerifierIdeVersions = 2020.1.4, 2020.3.2, 2021.3, 2022.1
javaVersion=1.8
pluginVerifierIdeVersions = 2020.2.4, 2020.3.2, 2021.3, 2022.2
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,4 @@ public class Deb822DialectDebianCopyrightFileTypeDetector implements FileTypeReg
return Deb822DialectDebianCopyrightFileType.INSTANCE;
}

@SuppressWarnings({"deprecated"})
@Override
public int getVersion() {
return 0;
}
}

0 comments on commit 665eaee

Please sign in to comment.