-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (29 loc) · 844 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.16'
}
group 'be.catsandcoding'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://maven.repository.redhat.com/ga/"
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/org.zeromq/jeromq
compile group: 'org.zeromq', name: 'jeromq', version: '0.5.2'
// https://mvnrepository.com/artifact/diff_match_patch/diff_match_patch
compile group: 'diff_match_patch', name: 'diff_match_patch', version: 'current'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2019.3.3'
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}