forked from stavroviv/JS-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (30 loc) · 1.06 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.14'
id 'war'
}
group 'JS-collector'
version ''
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-api
compile group: 'org.eclipse.jetty.websocket', name: 'websocket-api', version: '9.4.24.v20191120'
// https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-server
compile group: 'org.eclipse.jetty.websocket', name: 'websocket-server', version: '9.4.24.v20191120'
// https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-client
compile group: 'org.eclipse.jetty.websocket', name: 'websocket-client', version: '9.4.24.v20191120'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version 'IU-2019.3'
intellij.updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}