-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (50 loc) · 1.44 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
56
57
58
59
60
61
buildscript {
repositories {
jcenter()
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
}
}
plugins {
id "org.jetbrains.intellij" version "0.1.10"
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
allprojects {
repositories {
jcenter()
}
}
intellij {
version 'IC-2017.2'
pluginName 'asciidoctor'
updateSinceUntilBuild false
// publish {
// pluginId '7910'
// username publishUsername
// password publishPassword
// }
// Uncomment to test against Android Studio
// intellij.alternativeIdePath = '/Applications/Android Studio.app'
systemProperty 'idea.is.internal', 'false'
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'org.asciidoctor:asciidoctorj:1.5.6'
compile 'org.asciidoctor:asciidoctorj-diagram:1.5.8'
compile 'commons-io:commons-io:2.4'
compile 'org.jruby:jruby-complete:9.1.8.0'
compile 'org.pegdown:pegdown:1.4.2'
compile 'org.parboiled:parboiled-core:1.1.6'
testCompile 'junit:junit:4.12'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.2'
distributionUrl = distributionUrl.replace("bin", "all")
}
task checkUpdates(type: com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask) {
description = "check denpendency updates"
group = "check"
}