Skip to content

Commit b62b45c

Browse files
committed
More renames
1 parent c8398ba commit b62b45c

File tree

6 files changed

+66
-4
lines changed

6 files changed

+66
-4
lines changed

.classpath

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<classpath>
2+
<classpathentry kind="src" path="src"/>
3+
<classpathentry kind="var" path="wpilib" sourcepath="wpilib.sources"/>
4+
<classpathentry kind="var" path="networktables" sourcepath="networktables.sources"/>
5+
<classpathentry kind="var" path="opencv" sourcepath="opencv.sources"/>
6+
<classpathentry kind="var" path="cscore" sourcepath="cscore.sources"/>
7+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
8+
<classpathentry kind="output" path="bin"/>
9+
</classpath>

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/bin/
2-
/build*
2+
/build/
33
/dist
44
/target
5-
.classpath
6-
.project
5+
.idea/
6+
7+
*.iml

.project

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>grits_2017</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
<nature>edu.wpi.first.wpilib.plugins.core.nature.FRCProjectNature</nature>
17+
</natures>
18+
</projectDescription>

build.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Project specific information
2+
package=com.github.circuitrunners
3+
robot.class=${package}.Robot
4+
simulation.world.file=/usr/share/frcsim/worlds/GearsBotDemo.world

build.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project name="FRC Deployment" default="deploy">
4+
5+
<!--
6+
The following properties can be defined to override system level
7+
settings. These should not be touched unless you know what you're
8+
doing. The primary use is to override the wpilib version when
9+
working with older robots that can't compile with the latest
10+
libraries.
11+
-->
12+
13+
<!-- By default the system version of WPI is used -->
14+
<!-- <property name="version" value=""/> -->
15+
16+
<!-- By default the system team number is used -->
17+
<!-- <property name="team-number" value=""/> -->
18+
19+
<!-- By default the target is set to 10.TE.AM.2 -->
20+
<!-- <property name="target" value=""/> -->
21+
22+
<!-- Any other property in build.properties can also be overridden. -->
23+
24+
<property file="${user.home}/wpilib/wpilib.properties"/>
25+
<property file="build.properties"/>
26+
<property file="${user.home}/wpilib/java/${version}/ant/build.properties"/>
27+
28+
<import file="${wpilib.ant.dir}/build.xml"/>
29+
30+
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@
5656
<version>3.0.0</version>
5757
</dependency>
5858
</dependencies>
59-
</project>
59+
</project>

0 commit comments

Comments
 (0)