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

Commit

Permalink
Switch to GradleRIO
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecorry31 committed Feb 13, 2017
1 parent dd6d281 commit 3952add
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,7 @@ gradle-app.setting
.gradletasknamecache

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
# gradle/wrapper/gradle-wrapper.properties

*.iml
*.ipr
22 changes: 21 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,35 @@
plugins {
id "java"
id "eclipse"
id "idea"
id "jaci.openrio.gradle.GradleRIO" version "2017.1.1"
}

group 'com.kylecorry.frc.vision'
version '0.4.1'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
mavenCentral()
maven {
name = "GradleRio"
url = "http://dev.imjac.in/maven"
}

maven { url "https://plugins.gradle.org/m2/" }
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile fileTree(dir: 'libs', include: '*.jar')
compile wpilib()
}

wpi {
wpilibVersion = "+" // The WPILib version to use. For this version of GradleRIO, must be a 2017 version
ntcoreVersion = "+" // The NetworkTables Core version to use.
opencvVersion = "+" // The OpenCV version to use
cscoreVersion = "+" // The CSCore version to use
}
Binary file removed libs/WPILib.jar
Binary file not shown.
Binary file removed libs/cscore.jar
Binary file not shown.
Binary file removed libs/opencv.jar
Binary file not shown.

0 comments on commit 3952add

Please sign in to comment.