-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (53 loc) · 1.24 KB
/
build.gradle
File metadata and controls
61 lines (53 loc) · 1.24 KB
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 {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.30"
}
}
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.3.9'
id 'org.jetbrains.kotlin.jvm' version '1.3.30'
}
group 'io.github.onewhl'
version '1.0'
sourceCompatibility = 1.8
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
intellij {
version '2018.3.4'
pluginName 'astrid'
intellij.updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
"""
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile group: 'org.tensorflow', name: 'tensorflow', version: '1.13.1'
compile 'com.github.javaparser:javaparser-core:3.0.0-alpha.4'
compile group: 'net.razorvine', name: 'pyrolite', version: '4.19'
compile group: 'org.eclipse.mylyn.github', name: 'org.eclipse.egit.github.core', version: '2.1.5'
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}