From b8554780c3c3d5028931809d48a4309e8f91c413 Mon Sep 17 00:00:00 2001 From: James Kuszmaul Date: Wed, 27 May 2015 11:57:37 -0400 Subject: Added gradle build support and removed extraneous other build files. Change-Id: Id48b4f14e019ff67154b56c2fd3afdf64ec2cb3c --- smartdashboard/build.gradle | 52 + smartdashboard/build.xml | 99 -- smartdashboard/customSave | 36 - smartdashboard/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 52266 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + smartdashboard/gradlew | 164 +++ smartdashboard/gradlew.bat | 90 ++ smartdashboard/lib/jcommon-1.0.16.jar | Bin 309293 -> 0 bytes smartdashboard/lib/jfreechart-1.0.13.jar | Bin 1425744 -> 0 bytes smartdashboard/lib/junit-4.8.2.jar | Bin 237344 -> 0 bytes smartdashboard/lib/nblibraries.properties | 12 - smartdashboard/manifest.mf | 3 - smartdashboard/nbbuild.xml | 85 -- smartdashboard/nbproject/build-impl.xml | 1400 -------------------- smartdashboard/nbproject/genfiles.properties | 8 - smartdashboard/nbproject/project.properties | 94 -- smartdashboard/nbproject/project.xml | 16 - smartdashboard/pom.xml | 74 -- smartdashboard/smartdashboard.install4j | 460 ------- 19 files changed, 312 insertions(+), 2287 deletions(-) create mode 100644 smartdashboard/build.gradle delete mode 100644 smartdashboard/build.xml delete mode 100644 smartdashboard/customSave create mode 100644 smartdashboard/gradle/wrapper/gradle-wrapper.jar create mode 100644 smartdashboard/gradle/wrapper/gradle-wrapper.properties create mode 100755 smartdashboard/gradlew create mode 100644 smartdashboard/gradlew.bat delete mode 100644 smartdashboard/lib/jcommon-1.0.16.jar delete mode 100644 smartdashboard/lib/jfreechart-1.0.13.jar delete mode 100644 smartdashboard/lib/junit-4.8.2.jar delete mode 100644 smartdashboard/lib/nblibraries.properties delete mode 100644 smartdashboard/manifest.mf delete mode 100644 smartdashboard/nbbuild.xml delete mode 100644 smartdashboard/nbproject/build-impl.xml delete mode 100644 smartdashboard/nbproject/genfiles.properties delete mode 100644 smartdashboard/nbproject/project.properties delete mode 100644 smartdashboard/nbproject/project.xml delete mode 100644 smartdashboard/pom.xml delete mode 100644 smartdashboard/smartdashboard.install4j diff --git a/smartdashboard/build.gradle b/smartdashboard/build.gradle new file mode 100644 index 0000000..cc12aeb --- /dev/null +++ b/smartdashboard/build.gradle @@ -0,0 +1,52 @@ +apply plugin: 'java' +apply plugin: 'maven-publish' + +sourceSets { + main { + java.srcDir "src/" + } +} + +libsDirName = "../dist/tools" + +dependencies { + compile 'edu.wpi.first.wpilib.networktables.java:NetworkTables:0.1.0-SNAPSHOT' + compile 'junit:junit:4.12' + compile 'jcommon:jcommon:0.9.5' + compile 'jfreechart:jfreechart:1.0.0' +} + +repositories { + maven { + url "http://first.wpi.edu/FRC/roborio/maven/" + } + mavenCentral() +} + +publishing { + publications { + maven(MavenPublication) { + from components.java + + artifact (jar) { + classifier = 'jar' + } + + groupId 'edu.wpi.first.wpilib' + artifactId 'SmartDashboard' + version '1.0.0-SNAPSHOT' + } + } + repositories { + maven { + url "file://${System.properties['user.home']}/releases/maven" + } + } +} + +jar { + manifest { + attributes 'Main-Class': 'edu.wpi.first.smartdashboard.main' + } + from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } +} diff --git a/smartdashboard/build.xml b/smartdashboard/build.xml deleted file mode 100644 index c681afc..0000000 --- a/smartdashboard/build.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Smart Dashboard - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartdashboard/customSave b/smartdashboard/customSave deleted file mode 100644 index 39a81cd..0000000 --- a/smartdashboard/customSave +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartdashboard/gradle/wrapper/gradle-wrapper.jar b/smartdashboard/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..b5166da Binary files /dev/null and b/smartdashboard/gradle/wrapper/gradle-wrapper.jar differ diff --git a/smartdashboard/gradle/wrapper/gradle-wrapper.properties b/smartdashboard/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..522977e --- /dev/null +++ b/smartdashboard/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Wed May 27 11:45:18 EDT 2015 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip diff --git a/smartdashboard/gradlew b/smartdashboard/gradlew new file mode 100755 index 0000000..91a7e26 --- /dev/null +++ b/smartdashboard/gradlew @@ -0,0 +1,164 @@ +#!/usr/bin/env bash + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn ( ) { + echo "$*" +} + +die ( ) { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; +esac + +# For Cygwin, ensure paths are in UNIX format before anything is touched. +if $cygwin ; then + [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >&- +APP_HOME="`pwd -P`" +cd "$SAVED" >&- + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/smartdashboard/gradlew.bat b/smartdashboard/gradlew.bat new file mode 100644 index 0000000..aec9973 --- /dev/null +++ b/smartdashboard/gradlew.bat @@ -0,0 +1,90 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/smartdashboard/lib/jcommon-1.0.16.jar b/smartdashboard/lib/jcommon-1.0.16.jar deleted file mode 100644 index 4cd6807..0000000 Binary files a/smartdashboard/lib/jcommon-1.0.16.jar and /dev/null differ diff --git a/smartdashboard/lib/jfreechart-1.0.13.jar b/smartdashboard/lib/jfreechart-1.0.13.jar deleted file mode 100644 index 83c6993..0000000 Binary files a/smartdashboard/lib/jfreechart-1.0.13.jar and /dev/null differ diff --git a/smartdashboard/lib/junit-4.8.2.jar b/smartdashboard/lib/junit-4.8.2.jar deleted file mode 100644 index 5b4bb84..0000000 Binary files a/smartdashboard/lib/junit-4.8.2.jar and /dev/null differ diff --git a/smartdashboard/lib/nblibraries.properties b/smartdashboard/lib/nblibraries.properties deleted file mode 100644 index 849ac15..0000000 --- a/smartdashboard/lib/nblibraries.properties +++ /dev/null @@ -1,12 +0,0 @@ -libs.junit.classpath=\ - ${base}/junit/junit-3.8.2.jar -libs.junit.javadoc=\ - ${base}/junit/junit-3.8.2-api.zip -libs.junit_4.classpath=\ - ${base}/junit_4/junit-4.5.jar -libs.junit_4.javadoc=\ - ${base}/junit_4/junit-4.5-api.zip -libs.junit_4.src=\ - ${base}/junit_4/junit-4.5-src.jar -libs.CopyLibs.classpath=\ - ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar diff --git a/smartdashboard/manifest.mf b/smartdashboard/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/smartdashboard/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/smartdashboard/nbbuild.xml b/smartdashboard/nbbuild.xml deleted file mode 100644 index d960259..0000000 --- a/smartdashboard/nbbuild.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project SmartDashboardClientSVN. - - - - - - - - - - - - - - diff --git a/smartdashboard/nbproject/build-impl.xml b/smartdashboard/nbproject/build-impl.xml deleted file mode 100644 index b792a47..0000000 --- a/smartdashboard/nbproject/build-impl.xml +++ /dev/null @@ -1,1400 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.tests.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - - - - - - java -cp "${run.classpath.with.dist.jar}" ${main.class} - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartdashboard/nbproject/genfiles.properties b/smartdashboard/nbproject/genfiles.properties deleted file mode 100644 index fb785da..0000000 --- a/smartdashboard/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -nbbuild.xml.data.CRC32=685859a1 -nbbuild.xml.script.CRC32=0d9c8ec5 -nbbuild.xml.stylesheet.CRC32=28e38971@1.38.1.45 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=4f9ed213 -nbproject/build-impl.xml.script.CRC32=b7ebbfab -nbproject/build-impl.xml.stylesheet.CRC32=6ddba6b6@1.53.1.46 diff --git a/smartdashboard/nbproject/project.properties b/smartdashboard/nbproject/project.properties deleted file mode 100644 index 33ad4c1..0000000 --- a/smartdashboard/nbproject/project.properties +++ /dev/null @@ -1,94 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -application.title=SmartDashboard -application.vendor=Paul -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -buildfile=nbbuild.xml -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/SmartDashboard.jar -dist.javadoc.dir=${dist.dir}/javadoc -endorsed.classpath= -excludes= -file.reference.jcommon-1.0.16.jar=lib/jcommon-1.0.16.jar -file.reference.jfreechart-1.0.13.jar=lib/jfreechart-1.0.13.jar -file.reference.junit-4.8.2.jar=lib/junit-4.8.2.jar -file.reference.networktables-desktop.jar=lib/networktables-desktop.jar -file.reference.smartdashboard-src=src -includes=** -jar.archive.disabled=${jnlp.enabled} -jar.compress=false -jar.index=${jnlp.enabled} -javac.classpath=\ - ${file.reference.jcommon-1.0.16.jar}:\ - ${file.reference.jfreechart-1.0.13.jar}:\ - ${file.reference.junit-4.8.2.jar}:\ - ${file.reference.networktables-desktop.jar} -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.5 -javac.target=1.5 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir}:\ - ${file.reference.jcommon-1.0.16.jar}:\ - ${file.reference.jfreechart-1.0.13.jar}:\ - ${file.reference.junit-4.8.2.jar} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -jnlp.codebase.type=no.codebase -jnlp.descriptor=application -jnlp.enabled=false -jnlp.mixed.code=default -jnlp.offline-allowed=false -jnlp.signed=false -jnlp.signing= -jnlp.signing.alias= -jnlp.signing.keystore= -main.class=edu.wpi.first.smartdashboard.main -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project -# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value -# or test-sys-prop.name=value to set system properties for unit tests): -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=${file.reference.smartdashboard-src} -test.tests.dir=tests diff --git a/smartdashboard/nbproject/project.xml b/smartdashboard/nbproject/project.xml deleted file mode 100644 index e3a1776..0000000 --- a/smartdashboard/nbproject/project.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - SmartDashboard - - - - - - - - - - diff --git a/smartdashboard/pom.xml b/smartdashboard/pom.xml deleted file mode 100644 index c085ccd..0000000 --- a/smartdashboard/pom.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - edu.wpi.first.wpilib - SmartDashboard - 1.0.0-SNAPSHOT - pom - - - UTF-8 - UTF-8 - - - - - WPILib Maven Repository - http://first.wpi.edu/FRC/roborio/maven/ - - - - - - filesystem.repo - Temporary Staging Repository - file://${user.home}/releases/maven - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.9 - - - - edu.wpi.first.wpilib.networktables.java - NetworkTables - 0.1.0-SNAPSHOT - jar - true - lib - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.9.1 - - - attach-artifacts - package - - attach-artifact - - - - - dist/tools/SmartDashboard.jar - jar - - - - - - - - - diff --git a/smartdashboard/smartdashboard.install4j b/smartdashboard/smartdashboard.install4j deleted file mode 100644 index 9b1b402..0000000 --- a/smartdashboard/smartdashboard.install4j +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - sys.installationDir - - - - - - - context.getBooleanVariable("sys.confirmedUpdateInstallation") - - - - - - - - - - false - - - - - !context.getBooleanVariable("sys.confirmedUpdateInstallation") - - - - - - - - - - - - sys.installationDir - - - - - - - context.getVariable("sys.responseFile") == null - - - - - - - - - - - - - - - - - - - - - - - ${compiler:sys.fullName} - - - - - !context.getBooleanVariable("sys.confirmedUpdateInstallation") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${i18n:UninstallerMenuEntry(${compiler:sys.fullName})} - - - - - !context.getBooleanVariable("sys.programGroupDisabled") - - - - - - - ${compiler:sys.fullName} ${compiler:sys.version} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.2.3-54-g00ecf