-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
79 lines (62 loc) · 1.89 KB
/
build.gradle
File metadata and controls
79 lines (62 loc) · 1.89 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
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
plugins {
id 'java'
id 'maven-publish'
}
group = 'net.frc5183.librobot'
version = '2024.1.0'
repositories {
mavenCentral()
// WPILib
maven {
url = "https://frcmaven.wpi.edu/artifactory/release"
}
// PathPlannerLib
maven {
url = "https://3015rangerrobotics.github.io/pathplannerlib/repo"
}
// CTRE Phoenix
maven {
url = "https://maven.ctr-electronics.com/release/"
}
// REV Robotics
maven {
url = "https://maven.revrobotics.com/"
}
// Kauai Labs NavX
maven {
url = "https://dev.studica.com/maven/release/2024/"
}
// YAGSL
maven {
url = "https://broncbotz3481.github.io/YAGSL-Lib/yagsl/repos"
}
}
dependencies {
// Jetbrains Annotations
compileOnly "org.jetbrains:annotations:25.0.0"
compileOnly "edu.wpi.first.wpilibj:wpilibj-java:2024.3.2"
compileOnly "edu.wpi.first.wpiutil:wpiutil-java:2024.3.2"
compileOnly "edu.wpi.first.wpilibj:commands:2024.3.2"
compileOnly "edu.wpi.first.wpimath:wpimath-java:2024.3.2"
compileOnly "edu.wpi.first.wpiunits:wpiunits-java:2024.3.2"
compileOnly "edu.wpi.first.wpilibNewCommands:wpilibNewCommands-java:2024.3.2"
// PathPlannerLib
// todo: maven repository is broken
// compileOnly "com.pathplanner.lib:PathPlannerLib-java:2024.2.6"
// CTRE Phoenix (v6)
compileOnly "com.ctre.phoenix6:wpiapi-java:24.1.0"
// CTRE Phoenix (v5)
compileOnly "com.ctre.phoenix:api-java:5.33.0"
compileOnly "com.ctre.phoenix:wpiapi-java:5.33.0"
// REV Robotics
compileOnly "com.revrobotics.frc:REVLib-java:2024.2.0"
// NavX
compileOnly "com.kauailabs.navx.frc:navx-frc-java:2024.1.0"
// YAGSL
compileOnly "swervelib:YAGSL-java:2024.5.0.0"
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}