Sha256: c7361fbaf1050a475b239436d342d6e3d704798cfa1bc2c6304acc60450ef066
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
/** This is the default build.gradle for Toast modules @author Jaci */ buildscript { repositories { mavenCentral() maven { name = "GradleRIO" url = "http://dev.imjac.in/maven" } } dependencies { classpath group: 'jaci.openrio.gradle', name: 'GradleRIO', version: '+', classifier: 'Toast' //Change this line if you wish to Update GradleRIO } } apply plugin: 'java' apply plugin: 'idea' apply plugin: 'eclipse' apply plugin: 'maven' apply plugin: 'GradleRIO' //Apply the GradleRIO plugin repositories { maven { name = "Toast" url = "http://dev.imjac.in/maven" } } gradlerio.team = "%%TEAM" //Your FRC team number (e.g. 5333 for team 'Can't C#', or 47 for Chief Delphi) //gradlerio.rioIP = "10.53.33.20" //Uncomment to specify the IP address of the RIO gradlerio.deployFile = "toast/modules/${archivesBaseName}.jar" dependencies { compile group: 'jaci.openrio.toast', name: 'Toast', version: '+' //Change this line to update Toast }
Version data entries
7 entries across 7 versions & 1 rubygems