-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
50 lines (41 loc) · 1.23 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.18'
}
group 'se.de.hu_berlin.informatik'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
//apply from: "$rootDir/gradle/scripts/verifier.gradle"
repositories {
mavenCentral()
jcenter()
maven {
url "http://titania.fs.uni-saarland.de/nexus/content/groups/public/"
}
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation fileTree(dir: 'src/main/lib', include: ['*.jar'])
implementation "de.unisb.cs.st:sequitur:1.0"
// https://mvnrepository.com/artifact/org.jfree/jfreechart
compile group: 'org.jfree', name: 'jfreechart', version: '1.0.19'
//implementation files("${System.getProperty('java.home')}/../lib/tools.jar")
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2020.1'
plugins = ['java', 'coverage', 'junit', 'testng']
}
patchPluginXml {
changeNotes """
prototype implementation.<br>
<em>added a bunch of stuff</em>"""
}
runIde {
jvmArgs '--add-exports', 'java.base/jdk.internal.vm=ALL-UNNAMED'
}
// Compatibility checks
//runPluginVerifier {
// pluginFileName = "$rootProject.name-$version"
// ides = ["IC-2020.1"]
//}