mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2026-06-14 17:02:31 +02:00
Compare commits
26 Commits
105892301d
...
898f37796e
| Author | SHA1 | Date | |
|---|---|---|---|
|
898f37796e
|
|||
|
69abc60e9a
|
|||
|
6aca28e8b2
|
|||
|
5fe6f44515
|
|||
|
8ef7a16a80
|
|||
|
aec753ba5d
|
|||
|
c261b7e74d
|
|||
|
01027e2f7c
|
|||
|
0fec45bce7
|
|||
|
43e962515e
|
|||
|
10e43fe8f9
|
|||
|
13e5af970b
|
|||
|
92954b913d
|
|||
|
9da511dfe8
|
|||
|
fbe9d1c6ef
|
|||
|
aee84e2700
|
|||
|
ad9d493fc7
|
|||
|
484b135e83
|
|||
|
0d284d443d
|
|||
|
22aeb5b963
|
|||
|
83f883e874
|
|||
|
791ea56407
|
|||
|
0a09c1e1c3
|
|||
|
8a793d6cac
|
|||
|
00d3315a4e
|
|||
|
c2826e4a11
|
@@ -303,6 +303,11 @@ tasks {
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
buildPlugin {
|
||||
dependsOn(sourcesJar)
|
||||
from(sourcesJar) { into("lib/src") }
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
@@ -375,7 +380,13 @@ intellijPlatform {
|
||||
)
|
||||
|
||||
ideaVersion {
|
||||
sinceBuild.set("2025.3")
|
||||
// Let the Gradle plugin set the since-build version. It defaults to the version of the IDE we're building against
|
||||
// specified as two components, `{branch}.{build}` (e.g., "241.15989"). There is no third component specified.
|
||||
// The until-build version defaults to `{branch}.*`, but we want to support _all_ future versions, so we set it
|
||||
// with a null provider (the provider is important).
|
||||
// By letting the Gradle plugin handle this, the Plugin DevKit IntelliJ plugin cannot help us with the "Usage of
|
||||
// IntelliJ API not available in older IDEs" inspection. However, since our since-build is the version we compile
|
||||
// against, we can never get an API that's newer - it would be an unresolved symbol.
|
||||
untilBuild.set(provider { null })
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user