Moved version generation to the WPILib versioning plugin. (#277)

* Moved version generation to the WPILib versioning plugin. This also moves ntcore and wpilib to the latest available version.

* Fixed description string.

* Gave full path for ignored files.
This commit is contained in:
Fred Silberberg
2016-10-20 23:54:04 -07:00
committed by GitHub
parent 0613f1d182
commit e5e1a1a4d1
16 changed files with 258 additions and 95 deletions

View File

@@ -1,14 +1,8 @@
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'maven-publish'
// Adds the dependency for the shadow plugin, which creates an uberjar with all dependencies
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.3'
id 'maven-publish'
}
publishing {
@@ -26,7 +20,7 @@ publishing {
}
groupId 'edu.wpi.first.wpilibj.simulation'
artifactId 'SimDS'
version '0.1.0-SNAPSHOT'
version WPILibVersion.version
}
}
setupWpilibRepo(it)