forked from jimdowling/hops-intellij
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (41 loc) · 1.3 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.4'
}
group 'com.logicalclocks'
version '1.0-SNAPSHOT'
repositories {
maven {
name 'Hops Repo'
url "https://archiva.hops.works/repository/Hops/"
}
mavenCentral()
}
dependencies {
// CLI dependency
implementation "io.hops:hopsworks-cli:2.1.0"
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation "org.apache.commons:commons-lang3:3.8.1"
implementation "org.glassfish:javax.json:1.1.2"
implementation "javax.json:javax.json-api:1.1.2"
implementation "org.apache.hadoop:hadoop-client:2.8.4"
implementation "commons-io:commons-io:1.3.2"
implementation "org.slf4j:slf4j-api:1.7.25"
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation "ch.qos.logback:logback-core:1.2.3"
implementation "org.apache.httpcomponents:httpclient:4.5.8"
implementation "org.apache.httpcomponents:httpmime:4.5"
implementation "com.beust:jcommander:1.72"
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2020.2'
}
//intellij {
// version '2020.1'
//}
patchPluginXml {
changeNotes """
First version of Hopsworks IntelliJ/PyCharm Plugin.<br>
<em>https://github.com/logicalclocks/hopsworks</em>"""
}