-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
88 lines (78 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// See https://github.com/JetBrains/gradle-intellij-plugin/
plugins {
id("org.jetbrains.intellij.platform") version "2.2.1"
id 'java'
id 'com.diffplug.spotless' version '7.0.2'
}
group 'edu.kit.kastel.sdq'
version '1.0-SNAPSHOT'
java {
sourceCompatibility = "21"
targetCompatibility = "21"
}
repositories {
mavenLocal()
mavenCentral()
intellijPlatform {
defaultRepositories()
}
maven {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
intellijPlatform {
intellijIdeaCommunity('2024.2.1')
pluginVerifier()
bundledPlugin("com.intellij.java")
bundledPlugin("org.jetbrains.idea.maven")
instrumentationTools()
def localJbr = System.getenv("LOCAL_JBR")
if (localJbr != null) {
jetbrainsRuntimeLocal(localJbr)
}
}
implementation 'edu.kit.kastel.sdq:artemis4j:7.10.1'
// Tests
testImplementation 'org.junit.jupiter:junit-jupiter-api:' + JUNIT_VERSION
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:' + JUNIT_VERSION
testImplementation 'com.tngtech.archunit:archunit:' + ARCHUNIT_VERSION
testImplementation 'com.tngtech.archunit:archunit-junit5:' + ARCHUNIT_VERSION
}
intellijPlatform {
pluginConfiguration {
name = "IntelliGrade"
}
}
patchPluginXml {
changeNotes = """"""
}
test {
useJUnitPlatform()
}
tasks {
runIde {
autoReload = true
}
buildSearchableOptions {
enabled = false
}
}
spotless {
ratchetFrom 'origin/main'
format 'misc', {
target '*.gradle', '.gitattributes', '.gitignore', '*.md'
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
java {
toggleOffOn("@formatter:off", "@formatter:on")
palantirJavaFormat("2.50.0").formatJavadoc(false)
licenseHeaderFile('header.txt')
importOrderFile('spotless.importorder')
}
}
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}