-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
71 lines (58 loc) · 1.84 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.17'
}
group 'pfe.esi.Gattal-Hammache'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
apply plugin: 'java'
apply plugin: 'org.jetbrains.intellij'
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
//testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.opencsv:opencsv:5.1'
//testImplementation "org.junit.jupiter:junit-jupiter-api:5.0.0-M6"
testImplementation("org.junit.jupiter:junit-jupiter-params:5.4.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.7.0-M1")
//testRuntimeOnly("org.junit.vintage:junit-jupiter-engine:5.0.0-M6")
testCompile 'org.mockito:mockito-core:1.10.19'
}
test {
useJUnitPlatform {
includeEngines 'junit-jupiter', 'junit-vintage'
}
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '192.7142.36'
type 'IC'
pluginName 'RAndroid'
downloadSources true
intellij.updateSinceUntilBuild false
// Require the Android plugin, Gradle will match the plugin version to intellij.version
plugins 'java'
//alternativeIdePath '/Applications/Android Studio.app/Contents/'
alternativeIdePath '/snap/android-studio/91/android-studio/'
}
publishPlugin { token intellijPublishToken }
patchPluginXml {
changeNotes """
<p>The plugin Supports refactoring the following Android specific code smells:
<br/> Automatic refactoring:
<ul>
<li>Init OnDraw (IOD)</li>
<li>Heavy Start Service (HSS)</li>
<li>Rigid AlarmManager (RAM)</li>
<li>Inefficient Data Structure (IDS)</li>
</ul>
<br/> Giving Recommendations:
<ul>
<li>UI OverDraw (UIO)</li>
</ul>
</p>"""
}