-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
37 lines (28 loc) · 894 Bytes
/
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
plugins {
id 'java-library'
id("com.github.johnrengelman.shadow") version "6.0.0"
}
repositories {
mavenCentral()
}
tasks.jar {
manifest.attributes["Main-Class"] = "frc6831.planner.PathPlanner"
}
dependencies {
implementation 'org.a05annex:a05annexUtil:0.9.6'
// implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'org.jetbrains:annotations:17.0.0'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'net.sourceforge.argparse4j:argparse4j:0.8.1'
testImplementation('org.junit.platform:junit-platform-runner:1.4.2')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.4.2')
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.4.2')
}
test {
testLogging {
events 'started', 'passed'
}
}
sourceCompatibility = '11'
targetCompatibility = '11'
version = '2024.0.1'