8000 #235 Added 223 IDE build as supported by koha26 · Pull Request #236 · aemtools/aemtools · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

#235 Added 223 IDE build as supported #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 4, 2022
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
6 changes: 5 additions & 1 deletion aem-intellij-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,12 @@ tasks {
}
}

runPluginVerifier { enabled = true }
listProductsReleases { enabled = true }
runPluginVerifier {
enabled = true
subsystemsToCheck.set("without-android")
dependsOn(listProductsReleases)
}
verifyPlugin { enabled = true }

}
5 changes: 2 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@ build:
verbosity: detailed

build_script:
- gradlew.bat buildPlugin --info --no-daemon
- gradlew.bat buildPlugin --info

test_script:
- gradlew.bat test koverMergedHtmlReport runPluginVerifier --info --no-daemon
- gradlew.bat test koverMergedHtmlReport runPluginVerifier --info

environment:
JAVA_HOME: C:\Program Files\Java\jdk11
JAVA_OPTS: "-Xms256m -Xmx2048M -Djdk.tls.client.protocols=TLSv1.2"
matrix:
- ORG_GRADLE_PROJECT_ideaVersion: 2022.1
#- ORG_GRADLE_PROJECT_ideaVersion: LATEST-EAP-SNAPSHOT
#cache:
# - C:\Users\appveyor\.gradle
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

pluginGroup = aemtools
pluginName = aemtools
pluginVersion = 0.9.4
pluginVersion = 0.9.4.1

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 203
pluginUntilBuild = 222.*
pluginUntilBuild = 223.*

# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ class TestSdk {
companion object {
private val TEST_SDK_JAVA_11: Sdk = IdeaTestUtil.createMockJdk(
"mockedTestJava11",
Paths.get(System.getProperty("test.java.dir")).absolutePathString(),
false)
Paths.get(System.getProperty("test.java.dir")).absolutePathString())

@JvmStatic
fun getSdk() = TEST_SDK_JAVA_11
Expand Down
0