-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Team488/fix-everything
Port build changes from 2016 robot to fix link errors and other issues
- Loading branch information
Showing
9 changed files
with
76 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
/bin/ | ||
/TeamDatabase | ||
derby.log | ||
/488Logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Project specific information | ||
package=competition | ||
robot.class=${package}.Robot | ||
|
||
version=current | ||
|
||
# Libraries to use | ||
commonlib.root=../SeriouslyCommonLib | ||
commonlib.dist=${commonlib.root}/dist | ||
commonlib.libs=${commonlib.root}/lib | ||
commonlib.jar=${commonlib.dist}/XbotCommonLib.jar | ||
|
||
wpilib.jar=${commonlib.libs}/WPILib.jar | ||
wpilib.sources=${commonlib.libs}/WPILib-sources.jar | ||
networktables.jar=${commonlib.libs}/NetworkTables.jar | ||
networktables.sources=${commonlib.libs}/NetworkTables-sources.jar | ||
|
||
guice.jar=${commonlib.libs}/guice-3.0/guice-3.0-no_aop.jar | ||
guice_assisted.jar=${commonlib.libs}/guice-3.0/guice-assistedinject-3.0.jar | ||
inject.jar=${commonlib.libs}/guice-3.0/javax.inject.jar | ||
log4j.jar=${commonlib.libs}/log4j/log4j-1.2.17.jar | ||
commonsio.jar=${commonlib.libs}/commons-io-2.4/commons-io-2.4.jar | ||
derby.jar=${commonlib.libs}/Derby/derby.jar | ||
junit.jars=${commonlib.libs}/hamcrest-core-1.3.jar:${commonlib.libs}/junit-4.12.jar | ||
|
||
thirdpartyjars=${guice.jar}:${guice_assisted.jar}:${inject.jar}:${derby.jar}:${log4j.jar}:${commonsio.jar} | ||
|
||
classpath=${wpilib.jar}:${networktables.jar}:${thirdpartyjars}:${commonlib.jar} | ||
|
||
wpilib.ant.dir=${commonlib.libs}/ant | ||
|
||
# Build information | ||
jar=FRCUserProgram.jar | ||
src.dir=src | ||
test.dir=tests | ||
test.src.dir=tests | ||
test.dest.dir=dist/tests | ||
build.dir=build | ||
build.jars=${build.dir}/jars | ||
test.report.dir=${build.dir}/test-reports | ||
dist.dir=dist | ||
dist.jar=${dist.dir}/${jar} | ||
|
||
|
||
test.classpath=${classpath}:${junit.jars}:${dist.jar} | ||
test.magic.classpath=${test.classpath}:${test.dest.dir} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project name="Travis testing" default="check"> | ||
<property file="travis-build.properties" /> | ||
<import file="robot-program-build.xml"/> | ||
</project> |
Submodule SeriouslyCommonLib
updated
33 files