-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
54 lines (47 loc) · 2.03 KB
/
build.gradle
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
47
48
49
50
51
52
53
54
plugins {
id 'org.jetbrains.intellij' version '0.4.9'
}
group 'com.dryabov.phpStorm'
version '0.9.7'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
intellij {
version ideaVersion
plugins = ["com.jetbrains.php:${phpstormVersion}"]
}
publishPlugin {
token intellijPublishToken
channels 'nightly'
}
patchPluginXml {
sinceBuild "171.2014.21" // since 2017.1
untilBuild ""
pluginDescription """
Support of regular expressions parsing in PhpStorm
"""
changeNotes """
<dl>
<dt>0.9.7 (06 April 2021)</dt> <dd>Fixed conflict with injection escaper from PHP plugin<br>
Fixed irrelevant "Duplicate character '_' inside character class" inspection</dd>
<dt>0.9.6 (21 August 2019)</dt> <dd>Fixed processing of end delimiter escaping in regex</dd>
<dt>0.9.5 (23 June 2019)</dt> <dd>Fixed processing of \$ in regex</dd>
<dt>0.9.4.1 (10 June 2019)</dt> <dd>Rebuild with IU-2017.1</dd>
<dt>0.9.4 (09 June 2019)</dt> <dd>Fixed settings page<br>
<strong>(please, check your PhpRegexp settings)</strong>;<br>
Improved support of double quoted and heredoc strings;<br>
"Parse All Strings" option is disabled by default;<br>
Added support of PhpStorm 2019.2;<br>
Minimal supported version is changed to PhpStorm 2017.1</dd>
<dt>0.9.3 (07 May 2015)</dt> <dd>Rebuild for JDK 1.7 (fixed PluginException)</dd>
<dt>0.9.2 (03 May 2015)</dt> <dd>Fixed issue with incorrect escape character annotation;<br>
Added support of Perl5 embedded comments</dd>
<dt>0.9.1 (15 Apr 2015)</dt> <dd>Fixed possible "infinite" loop in regex checker</dd>
<dt>0.9.0 (13 Apr 2015)</dt> <dd>Initial release</dd>
</dl>
"""
}