forked from wpilibsuite/SmartDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
33 lines (23 loc) · 1001 Bytes
/
dependencies.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
def nativeConfigName = 'wpilibNatives'
def nativeConfig = configurations.create(nativeConfigName)
def nativeTasks = wpilibTools.createExtractionTasks {
configurationName = nativeConfigName
}
nativeTasks.addToSourceSetResources(sourceSets.main)
wpilibTools.deps.wpilibVersion = "2021.+"
nativeConfig.dependencies.add wpilibTools.deps.wpilib("ntcore")
nativeConfig.dependencies.add wpilibTools.deps.wpilib("wpiutil")
dependencies {
implementation wpilibTools.deps.wpilibJava("ntcore")
implementation wpilibTools.deps.wpilibJava("wpiutil")
implementation 'jfree:jcommon:1.0.16'
implementation 'jfree:jfreechart:1.0.13'
implementation "com.fasterxml.jackson.core:jackson-annotations:2.10.0"
implementation "com.fasterxml.jackson.core:jackson-core:2.10.0"
implementation "com.fasterxml.jackson.core:jackson-databind:2.10.0"
}
ext.projectMainClass = "edu.wpi.first.smartdashboard.SmartDashboard"
pmdMain {
pmdMain.enabled = false
}
spotbugsMain.enabled = false