Skip to content
This repository was archived by the owner on Sep 15, 2023. It is now read-only.

Commit 3952add

Browse files
committed
Switch to GradleRIO
1 parent dd6d281 commit 3952add

File tree

5 files changed

+25
-2
lines changed

5 files changed

+25
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,7 @@ gradle-app.setting
184184
.gradletasknamecache
185185

186186
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
187-
# gradle/wrapper/gradle-wrapper.properties
187+
# gradle/wrapper/gradle-wrapper.properties
188+
189+
*.iml
190+
*.ipr

build.gradle

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
1+
plugins {
2+
id "java"
3+
id "eclipse"
4+
id "idea"
5+
id "jaci.openrio.gradle.GradleRIO" version "2017.1.1"
6+
}
7+
18
group 'com.kylecorry.frc.vision'
29
version '0.4.1'
310

4-
apply plugin: 'java'
511

612
sourceCompatibility = 1.8
713

814
repositories {
915
mavenCentral()
16+
maven {
17+
name = "GradleRio"
18+
url = "http://dev.imjac.in/maven"
19+
}
20+
21+
maven { url "https://plugins.gradle.org/m2/" }
1022
}
1123

1224
dependencies {
1325
testCompile group: 'junit', name: 'junit', version: '4.11'
1426
compile fileTree(dir: 'libs', include: '*.jar')
27+
compile wpilib()
28+
}
29+
30+
wpi {
31+
wpilibVersion = "+" // The WPILib version to use. For this version of GradleRIO, must be a 2017 version
32+
ntcoreVersion = "+" // The NetworkTables Core version to use.
33+
opencvVersion = "+" // The OpenCV version to use
34+
cscoreVersion = "+" // The CSCore version to use
1535
}

libs/WPILib.jar

-269 KB
Binary file not shown.

libs/cscore.jar

-23.9 KB
Binary file not shown.

libs/opencv.jar

-129 KB
Binary file not shown.

0 commit comments

Comments
 (0)