This repository was archived by the owner on Sep 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
58 lines (44 loc) · 1.59 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
55
56
57
//
// build.gradle in Ftc3543Lib
//
apply plugin: 'com.android.library'
android {
defaultConfig {
minSdkVersion 24
targetSdkVersion 28
}
compileSdkVersion 28
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation project(':RobotLibrary')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation('org.ejml:ejml-simple:0.39') {
exclude group: 'org.ejml', module: 'ejml-all'
}
implementation 'com.acmerobotics.roadrunner:core:0.5.4'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.acmerobotics.dashboard:dashboard:0.4.3'
testImplementation(platform('org.junit:junit-bom:5.7.0'))
testImplementation('org.junit.jupiter:junit-jupiter-api:5.7.0')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.7.0')
testImplementation('org.mockito:mockito-core:3.5.11')
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.0"
// compileOnly 'org.firstinspires.ftc:Inspection:6.0'
// compileOnly 'org.firstinspires.ftc:Blocks:6.0'
// compileOnly 'org.firstinspires.ftc:RobotCore:6.0'
// compileOnly 'org.firstinspires.ftc:RobotServer:6.0'
// compileOnly 'org.firstinspires.ftc:OnBotJava:6.0'
// compileOnly 'org.firstinspires.ftc:Hardware:6.0'
// compileOnly 'org.firstinspires.ftc:FtcCommon:6.0'
// compileOnly 'androidx.appcompat:appcompat:1.2.0'
}
repositories {
flatDir {
dirs '../libs'
}
}
apply from: '../build.dependencies.gradle'