forked from maximehamm/tzatziki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
96 lines (82 loc) · 3.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
plugins {
id 'org.jetbrains.intellij' version '0.7.2'
}
allprojects {
group = 'io.nimbly.tzatziki'
version '2.0.0'
}
ext {
changeNotes = """
<b>Please kindly report any problem... and Rate & Review this plugin !</b><br/>
<br/>
Change notes :
<ul>
<li><b>2.0</b> Exporting feature to PDF</li>
<li><b>1.5</b> Moving rows and lines uo/down and left/right</li>
<li><b>1.4</b> Deleting rows and lines improvements</li>
<li><b>1.3</b> Prevent table structure to be corrupted while using DELETE, BACKSPACE, CUT, etc.</li>
<li><b>1.2</b> Intellij IDEA 2021.1 EAP Compatibility</li>
<li><b>1.1</b> Copy from Excel to table</li>
<li><b>1.0</b> Copy from table to Excel</li>
<li><b>0.4</b> Add new column by pressing pipe</li>
<li><b>0.3</b> Add new lines by pressing from line end or from last line</li>
<li><b>0.2</b> Navigate between cells using tab, backtab and enter</li>
<li><b>0.1</b> Cucumber table formatting as you go</li>
</ul>
"""
}
/* TODOLIST
- Reselect row/column after using "delete" button
- Paste a NEW table where allowed
*/
//ext { // 2020.3
// plugin_idea_version = 'IC-201.8538.31'
// plugin_idea_plugins = ['java',
// 'Kotlin',
// 'org.intellij.intelliLang',
// 'Gherkin:203.5981.155',
// 'PsiViewer:203-SNAPSHOT']
//}
//ext { // 2021.1 EAP
// plugin_idea_version = 'IC-LATEST-EAP-SNAPSHOT'
// plugin_idea_plugins = ['java',
// 'Kotlin',
// 'org.intellij.intelliLang',
// 'Gherkin:211.6432.7',
// 'PsiViewer:211.6305.21-EAP-SNAPSHOT']
//}
// https://plugins.jetbrains.com/plugin/9164-gherkin
// https://plugins.jetbrains.com/plugin/227-psiviewer
// https://plugins.jetbrains.com/docs/intellij/gradle-build-system.html
// https://github.com/JetBrains/gradle-intellij-plugin/
ext { //2020.2.4 // 2020.1.3 = KO
plugin_idea_version = 'IC-202.8194.7'
plugin_idea_plugins = ['java',
'Kotlin',
'org.intellij.intelliLang',
'Gherkin:202.6397.21',
'cucumber-java:202.6397.59',
'PsiViewer:202-SNAPSHOT.2']
}
allprojects {
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
}
}
}
// DEPENDENCY MANAGEMENT :
// Example : https://github.com/adelf/idea-php-dotenv-plugin/blob/master/build.gradle
// Other examples : https://www.programcreek.com/java-api-examples/?api=com.intellij.lang.javascript.psi.JSReferenceExpression
dependencies {
implementation project(':plugin')
implementation project(':common')
testImplementation project(':tests')
}
tasks.buildSearchableOptions {
enabled = false
}