1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-20 22:34:06 +02:00

Revert version of gradle plugin to 0.7.3

This commit is contained in:
Alex Plate 2021-05-14 09:38:34 +03:00
parent df52f37b69
commit bbcfee3ad6
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
2 changed files with 14 additions and 23 deletions

View File

@ -20,7 +20,7 @@ plugins {
java java
kotlin("jvm") version "1.5.0" kotlin("jvm") version "1.5.0"
id("org.jetbrains.intellij") version "1.0-SNAPSHOT" id("org.jetbrains.intellij") version "0.7.3"
id("io.gitlab.arturbosch.detekt") version "1.15.0" id("io.gitlab.arturbosch.detekt") version "1.15.0"
id("org.jetbrains.changelog") version "1.1.2" id("org.jetbrains.changelog") version "1.1.2"
@ -104,23 +104,23 @@ sourceSets {
// --- Intellij plugin // --- Intellij plugin
intellij { intellij {
version.set(ideaVersion) version = ideaVersion
pluginName.set("IdeaVim") pluginName = "IdeaVim"
updateSinceUntilBuild.set(false) updateSinceUntilBuild = false
downloadSources.set(downloadIdeaSources.toBoolean()) downloadSources = downloadIdeaSources.toBoolean()
instrumentCode.set(instrumentPluginCode.toBoolean()) instrumentCode = instrumentPluginCode.toBoolean()
intellijRepository.set("https://www.jetbrains.com/intellij-repository") intellijRepo = "https://www.jetbrains.com/intellij-repository"
plugins.set(listOf("java")) setPlugins("java")
} }
tasks { tasks {
downloadRobotServerPlugin { downloadRobotServerPlugin {
version.set("0.10.0") version = "0.10.0"
} }
publishPlugin { publishPlugin {
channels.set(publishChannels.split(",")) channels(publishChannels.split(","))
token.set(publishToken) token(publishToken)
} }
runIdeForUiTests { runIdeForUiTests {
@ -128,9 +128,9 @@ tasks {
} }
runPluginVerifier { runPluginVerifier {
ideVersions.set(listOf("IC-2020.2.3", "IC-2020.3.2")) ideVersions(listOf("IC-2020.2.3", "IC-2020.3.2"))
downloadDir.set("${project.buildDir}/pluginVerifier/ides") downloadDirectory("${project.buildDir}/pluginVerifier/ides")
teamCityOutputFormat.set(true) teamCityOutputFormat = true
} }
} }

View File

@ -16,13 +16,4 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
pluginManagement {
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
gradlePluginPortal()
}
}
rootProject.name = 'IdeaVIM' rootProject.name = 'IdeaVIM'