-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (38 loc) · 1.12 KB
/
build.gradle
File metadata and controls
44 lines (38 loc) · 1.12 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
application {
mainClass = 'edu.stevens.swe.research.java.cli.Main'
}
group = 'edu.stevens'
version = '1.3.2'
dependencies {
// Use JitPack dependency for release builds
implementation("com.github.Codegass:parser-core:main-SNAPSHOT")
// implementation project(':parser-core') // For local development
implementation 'info.picocli:picocli:4.7.0'
implementation 'org.eclipse.jdt:org.eclipse.jdt.core:3.37.0'
implementation 'com.google.code.gson:gson:2.11.0'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
shadowJar {
archiveBaseName.set('Javalang-analyzing-cli')
archiveClassifier.set('all')
mergeServiceFiles()
manifest {
attributes 'Main-Class': 'edu.stevens.swe.research.java.cli.Main'
}
}