Update NativeUtils to not copy NI libraries to jenkins RoboRIO (#1359)

Allows for compile only shared libraries
This commit is contained in:
Thad House
2018-10-06 20:51:00 -07:00
committed by Peter Johnson
parent 0a937bb5b9
commit 88b93c220e
2 changed files with 3 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
plugins {
id 'base'
id 'edu.wpi.first.wpilib.versioning.WPILibVersioningPlugin' version '2.2'
id 'edu.wpi.first.NativeUtils' version '1.7.4'
id 'edu.wpi.first.NativeUtils' version '1.7.5'
id 'edu.wpi.first.GradleJni' version '0.3.0'
id 'edu.wpi.first.GradleVsCode' version '0.4.2'
id 'idea'

View File

@@ -19,6 +19,7 @@ model {
version = '2018.17.1'
sharedConfigs = chipObjectConfigs
staticConfigs = [:]
compileOnlyShared = true
}
netcomm(DependencyConfig) {
groupId = 'edu.wpi.first.ni-libraries'
@@ -28,6 +29,7 @@ model {
version = '2018.17.1'
sharedConfigs = netCommLibConfigs
staticConfigs = [:]
compileOnlyShared = true
}
}
}