Put in new allwiplib-2018 and packaged the large files

added new allwpilib

added ntcore

Added new wpiutil

Change-Id: I5bbb966a69ac2fbdce056e4c092a13f246dbaa6a
diff --git a/third_party/allwpilib_2018/wpilibj/integrationTestingFiles.gradle b/third_party/allwpilib_2018/wpilibj/integrationTestingFiles.gradle
new file mode 100644
index 0000000..175c7c9
--- /dev/null
+++ b/third_party/allwpilib_2018/wpilibj/integrationTestingFiles.gradle
@@ -0,0 +1,21 @@
+def testOutputFolder = file("${project(':').buildDir}/integrationTestFiles")
+
+model {
+    tasks {
+        copyWpilibJTestLibrariesToOutput(Copy) {
+            destinationDir testOutputFolder
+            $.binaries.each {
+                if (it in SharedLibraryBinarySpec && it.targetPlatform.architecture.name == 'athena') {
+                    def spec = it
+                    dependsOn spec.buildTask
+                    from(spec.sharedLibraryFile) {
+                            into '/libs'
+                    }
+                }
+            }
+            outputs.file testOutputFolder
+            outputs.upToDateWhen { false }
+        }
+        build.dependsOn copyWpilibJTestLibrariesToOutput
+    }
+}