-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgradle.properties
46 lines (38 loc) · 2.45 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
org.gradle.jvmargs=-Xmx1024m
# IntelliJ Platform Artifacts Repositories
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
pluginGroup = com.github.rogerhowell
pluginName = JavaParser-AST-Inspector
pluginVersion = 0.5.5-SNAPSHOT
## See build numbers here:
## https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#intellij-platform-based-products-of-recent-ide-versions
## Since 2019.2 (192), until most recent (currently 213 / 2021.3)
pluginSinceBuild = 192
pluginUntilBuild = 221.*
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions
## Note: If exception about unable to resolve download url, it may be that the download url is no longer listed.
## In this case, a later patch release may need to be specified (details in the url to a JSON file above).
#### > Task :runPluginVerifier
#### [gradle-intellij-plugin :JavaParser AST Inspector:runPluginVerifier] Cannot resolve direct download URL for: https://data.services.jetbrains.com/products/download?code=IC&platform=linux&type=release&version=2019.3
#### java.io.FileNotFoundException: https://data.services.jetbrains.com/products/download?code=IC&platform=linux&type=release&version=2019.3
#pluginVerifierIdeVersions = 2019.3.5, 2020.1.4, 2020.2.4, 2020.3.2, 2021.1, 2021.3, 2021.3.1, 2021.3.2
## Leaving this blank will automatically determine the versions to check against
pluginVerifierIdeVersions =
#// See https://github.com/JetBrains/gradle-intellij-plugin/#intellij-platform-properties
#// Note that the default is 'LATEST-EAP-SNAPSHOT', but can be set to specific versions (e.g. '2020.1')
platformType = IC
platformVersion = LATEST-EAP-SNAPSHOT
#platformVersion = 2020.2
platformDownloadSources = true
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins = com.intellij.java
# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
javaVersion = 11
# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 7.3.3
# Opt-out flag for bundling Kotlin standard library.
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
# suppress inspection "UnusedProperty"
kotlin.stdlib.default.dependency = false