-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (36 loc) · 1016 Bytes
/
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
plugins {
id 'org.jetbrains.intellij' version '1.1.4'
id 'java'
}
group 'com.salilvnair'
version '1.0.2'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation 'com.apple:AppleJavaExtensions:1.4'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2021.2.1'
}
patchPluginXml {
changeNotes = """
version: 1.0.0.<br>
<em>Base version</em>
<br><br>
version: 1.0.1<br>
<em>Added Angular library package monitor feature</em>
<em>Added force refresh button</em>
<br><br>
version: 1.0.2<br>
<em>Bug Fix #1 On click of other files after angular.json update wasn't working.</em>
<em>Bug Fix #2 Refresh button to be disabled for empty table data</em>
<em>Bug Fix #3 Auto diff filter if diff filter is selected.</em>
"""
}
test {
useJUnitPlatform()
}