-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from oroinc/ticket/OPP-67
OPP-67: Error in PhpStorm 2022.3
- Loading branch information
Showing
13 changed files
with
342 additions
and
251 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
plugins { | ||
id("org.jetbrains.intellij") version "1.11.0" | ||
} | ||
|
||
group = "com.oroplatform" | ||
version = "2022.3" | ||
|
||
intellij { | ||
pluginName.set("idea-oroplatform-plugin") | ||
type.set("IU") | ||
version.set("2022.3") | ||
plugins.set(listOf( | ||
"com.jetbrains.php:223.7571.212", | ||
"yaml", | ||
"java-i18n", | ||
"properties", | ||
"css-impl", | ||
"JavaScript", | ||
"com.jetbrains.twig:223.7571.212" | ||
)) | ||
sandboxDir.set("${project.rootDir}/.idea-sandbox") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
tasks { | ||
runIde { | ||
ideDir.set(file("/home/michael/Programs/PhpStorm-223.7571.212")) | ||
} | ||
} |
Binary file not shown.
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,6 +1,6 @@ | ||
#Fri Apr 08 18:13:33 CEST 2016 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip |
Oops, something went wrong.