-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
106 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,30 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.0" | ||
id("org.jetbrains.intellij") version "1.17.4" | ||
id("org.jetbrains.intellij.platform") version "2.1.0" | ||
id("java-library") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
intellijPlatform { | ||
defaultRepositories() | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
intellijPlatform { | ||
intellijIdeaCommunity("2022.3") | ||
instrumentationTools() | ||
} | ||
} | ||
|
||
intellij { | ||
version.set("2022.3.1") | ||
type.set("IC") | ||
intellijPlatform { | ||
buildSearchableOptions.set(false) | ||
} | ||
|
||
tasks{ | ||
buildSearchableOptions { | ||
enabled = false | ||
} | ||
runIde{ | ||
tasks { | ||
runIde { | ||
enabled = false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.0" | ||
id("org.jetbrains.intellij") version "1.17.4" | ||
id("org.jetbrains.intellij.platform") version "2.1.0" | ||
id("java-library") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
intellijPlatform { | ||
defaultRepositories() | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
implementation(project(":base")) | ||
intellijPlatform { | ||
intellijIdeaUltimate("2024.2.3") | ||
plugin("org.jetbrains.plugins.go:242.23339.11") | ||
instrumentationTools() | ||
} | ||
} | ||
|
||
intellij { | ||
version.set("2022.1.1") | ||
type.set("IU") | ||
plugins.add("org.jetbrains.plugins.go:221.5591.9") | ||
updateSinceUntilBuild.set(false) | ||
intellijPlatform { | ||
buildSearchableOptions.set(false) | ||
} | ||
|
||
tasks{ | ||
buildSearchableOptions { | ||
enabled = false | ||
} | ||
runIde{ | ||
tasks { | ||
runIde { | ||
enabled = false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.0" | ||
id("org.jetbrains.intellij") version "1.17.4" | ||
id("org.jetbrains.intellij.platform") version "2.1.0" | ||
id("java-library") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
intellijPlatform { | ||
defaultRepositories() | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
implementation(project(":base")) | ||
intellijPlatform { | ||
intellijIdeaCommunity("2024.2.3") | ||
bundledPlugin("com.intellij.java") | ||
instrumentationTools() | ||
} | ||
} | ||
|
||
intellij { | ||
version.set("2022.1.1") | ||
type.set("IC") | ||
plugins.set(listOf("com.intellij.java")) | ||
updateSinceUntilBuild.set(false) | ||
intellijPlatform { | ||
buildSearchableOptions.set(false) | ||
} | ||
|
||
tasks{ | ||
buildSearchableOptions { | ||
enabled = false | ||
} | ||
runIde{ | ||
tasks { | ||
runIde { | ||
enabled = false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.0" | ||
id("org.jetbrains.intellij") version "1.17.4" | ||
id("org.jetbrains.intellij.platform") version "2.1.0" | ||
id("java-library") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
intellijPlatform { | ||
defaultRepositories() | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
implementation(project(":base")) | ||
intellijPlatform { | ||
intellijIdeaCommunity("2024.2.3") | ||
bundledPlugin("org.jetbrains.kotlin") | ||
instrumentationTools() | ||
} | ||
} | ||
|
||
intellij { | ||
version.set("2022.1.1") | ||
type.set("IC") | ||
plugins.set(listOf("org.jetbrains.kotlin")) | ||
updateSinceUntilBuild.set(false) | ||
intellijPlatform { | ||
buildSearchableOptions.set(false) | ||
} | ||
|
||
tasks{ | ||
buildSearchableOptions { | ||
enabled = false | ||
} | ||
runIde{ | ||
tasks { | ||
runIde { | ||
enabled = false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.0" | ||
id("org.jetbrains.intellij") version "1.17.4" | ||
id("org.jetbrains.intellij.platform") version "2.1.0" | ||
id("java-library") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
intellijPlatform { | ||
defaultRepositories() | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
implementation(project(":base")) | ||
intellijPlatform { | ||
intellijIdeaCommunity("2024.2.3") | ||
plugin("com.jetbrains.php:242.23339.16") | ||
instrumentationTools() | ||
} | ||
} | ||
|
||
intellij { | ||
version.set("2022.2.2") | ||
type.set("IU") | ||
plugins.add("com.jetbrains.php:222.4167.35") | ||
updateSinceUntilBuild.set(false) | ||
intellijPlatform { | ||
buildSearchableOptions.set(false) | ||
} | ||
|
||
tasks{ | ||
buildSearchableOptions { | ||
enabled = false | ||
} | ||
runIde{ | ||
tasks { | ||
runIde { | ||
enabled = false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
<id>com.yoavst.graffiti.intellij</id> | ||
<name>Graffiti</name> | ||
<vendor email="[email protected]" url="https://yoavst.com">Yoav Sternberg</vendor> | ||
<idea-version since-build="213"/> | ||
<description><![CDATA[ | ||
Graffiti support for Intellij, Clion and PHPStorm. Supports Java, Kotlin, C/C++ and PHP. | ||
]]></description> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.0" | ||
id("org.jetbrains.intellij") version "1.17.4" | ||
id("org.jetbrains.intellij.platform") version "2.1.0" | ||
id("java-library") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
intellijPlatform { | ||
defaultRepositories() | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
implementation(project(":base")) | ||
intellijPlatform { | ||
pycharmCommunity("2024.2.3") | ||
bundledPlugin("PythonCore") | ||
instrumentationTools() | ||
} | ||
} | ||
|
||
intellij { | ||
version.set("2022.1.1") | ||
type.set("PC") | ||
plugins.set(listOf("PythonCore")) | ||
updateSinceUntilBuild.set(false) | ||
intellijPlatform { | ||
buildSearchableOptions.set(false) | ||
} | ||
|
||
tasks{ | ||
buildSearchableOptions { | ||
enabled = false | ||
} | ||
runIde{ | ||
tasks { | ||
runIde { | ||
enabled = false | ||
} | ||
} |