aboutsummaryrefslogtreecommitdiffstats
path: root/gradle/java-common.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-07-31 17:28:31 +0200
committerLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-07-31 17:28:31 +0200
commitaf0ac22364d2621f580eef10df4172240ab382f2 (patch)
treea007565c63bede54ace1fa7f862a3a38e2e90729 /gradle/java-common.gradle
parentAdd JMH benchmarks for model-data (diff)
downloadrefinery-af0ac22364d2621f580eef10df4172240ab382f2.tar.gz
refinery-af0ac22364d2621f580eef10df4172240ab382f2.tar.zst
refinery-af0ac22364d2621f580eef10df4172240ab382f2.zip
Refactor Gradle configs
Diffstat (limited to 'gradle/java-common.gradle')
-rw-r--r--gradle/java-common.gradle25
1 files changed, 0 insertions, 25 deletions
diff --git a/gradle/java-common.gradle b/gradle/java-common.gradle
index caae7d78..8f37e475 100644
--- a/gradle/java-common.gradle
+++ b/gradle/java-common.gradle
@@ -3,20 +3,10 @@ repositories {
3} 3}
4 4
5apply plugin: 'java' 5apply plugin: 'java'
6apply plugin: 'org.xtext.xtend'
7 6
8sourceCompatibility = '11' 7sourceCompatibility = '11'
9targetCompatibility = '11' 8targetCompatibility = '11'
10 9
11sourceSets {
12 main {
13 xtendOutputDir = 'src/main/xtend-gen'
14 }
15 test {
16 xtendOutputDir = 'src/test/xtend-gen'
17 }
18}
19
20configurations.all { 10configurations.all {
21 exclude group: 'asm' 11 exclude group: 'asm'
22} 12}
@@ -27,21 +17,6 @@ jar {
27 } 17 }
28} 18}
29 19
30test {
31 useJUnitPlatform {
32 excludeTags 'slow'
33 }
34}
35
36task slowTest(type: Test) {
37 useJUnitPlatform()
38}
39
40clean.doLast {
41 delete 'src/main/xtend-gen'
42 delete 'src/test/xtend-gen'
43}
44
45apply plugin: 'eclipse' 20apply plugin: 'eclipse'
46 21
47eclipse { 22eclipse {