forked from windup/intellij-mta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (46 loc) · 1.21 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
plugins {
id "org.jetbrains.intellij" version "0.4.21"
id 'java'
id "idea"
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
group 'org.jboss.tools.intellij'
version projectVersion
intellij {
version ideaVersion
pluginName 'org.jboss.tools.intellij.mtr'
updateSinceUntilBuild false
plugins 'java'
}
task copyResources(type: Copy) {
from "src/main/resources/META-INF/web/"
into new File(buildDir, 'resources/resources')
}
dependencies {
implementation 'org.apache.commons:commons-exec:1.3'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'org.eclipse.text:org.eclipse.text:3.5.101'
implementation 'commons-io:commons-io:2.6'
implementation 'io.vertx:vertx-core:3.9.4'
implementation 'io.vertx:vertx-web:3.9.4'
compile files(new File(buildDir, 'resources/resources')) {
builtBy 'copyResources'
}
testCompile 'org.mockito:mockito-core:2.28.2'
}
publishPlugin {
token jetBrainsToken
channels jetBrainsChannel
}
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://repository.jboss.org'
}
maven {
url "https://mvnrepository.com"
}
}