-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (29 loc) · 906 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
34
35
36
37
38
plugins {
id 'java-library'
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
allprojects {
group 'com.github.BytingBulldogs3539.bulldoglibrary'
version '1.6.0'
repositories {
mavenCentral()
maven { url = uri('https://frcmaven.wpi.edu/artifactory/release/') }
}
}
dependencies {
implementation "edu.wpi.first.wpilibj:wpilibj-java:2024.1.1"
implementation "edu.wpi.first.wpiutil:wpiutil-java:2024.1.1"
implementation "edu.wpi.first.wpimath:wpimath-java:2024.1.1"
implementation group: 'org.ini4j', name: 'ini4j', version: '0.5.4'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}