-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitignore
42 lines (33 loc) · 920 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Git will ignore all files matching these patterns.
# If no path is given, the pattern will be applied to all files.
# Ignore most Eclipse-specific files, except for the .project, .classpath, and .settings files
.metadata
# Ignore IDEA project meta
/.idea
# Ignore all FRC-specific files generated by the build ...
/j2meclasses
/suite
/bin
bin
/image.suite
/image.sym
/build
build
# We are including the 'sunspotfrcsdk' files in our repo.
# If they were managed in a better way (e.g., Maven) then we wouldn't
# have to store them locally. But this is the easiest way to ensure
# the SDK is easily accessible and that everyone is using the same SDK.
#
# Always include everything in the SDK ...
!/sunspotfrcsdk
# Except the JavaDoc ...
sunspotfrcsdk/doc
# Definitely include these ...
!/resources
!build.xml
!build.properties
# Ignore the files compiled/built from Java source ...
*.class
#*.jar
*.war
*.ear