-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (42 loc) · 1.45 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
apply plugin: 'java-library'
apply plugin: 'maven-publish'
group = 'com.ThePinkAlliance.core'
version = '2.3.3'
sourceCompatibility = JavaVersion.VERSION_11 // java 11
targetCompatibility = JavaVersion.VERSION_11
def CORE_MAIN_CLASS = "com.ThePinkAlliance.core"
repositories {
mavenCentral()
maven {
url = uri('https://frcmaven.wpi.edu/artifactory/release/')
}
maven { url = uri('https://maven.revrobotics.com/') }
maven { url = uri('https://devsite.ctr-electronics.com/maven/release/') }
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
implementation 'com.google.guava:guava:29.0-jre'
implementation 'edu.wpi.first.wpilibj:wpilibj-java:2023.2.1'
implementation 'edu.wpi.first.shuffleboard:shuffleboard:2022.4.1'
implementation 'edu.wpi.first.shuffleboard:api:2023.2.1'
implementation 'edu.wpi.first.wpilibNewCommands:wpilibNewCommands-java:2023.2.1'
implementation 'edu.wpi.first.wpiutil:wpiutil-java:2023.2.1'
implementation 'edu.wpi.first.cscore:cscore-java:2023.2.1'
implementation 'edu.wpi.first.ntcore:ntcore-java:2023.2.1'
implementation 'edu.wpi.first.wpimath:wpimath-java:2023.2.1'
implementation 'com.ctre.phoenix:api-java:5.30.2'
implementation 'com.revrobotics.frc:REVLib-java:2023.1.1'
testImplementation 'junit:junit:4.12'
}
jar {
def env = System.getenv("JITPACK")
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}