Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Spark-Processor/.gitignore
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
93 lines (68 sloc)
1.35 KB
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
# Created by https://www.gitignore.io/api/sbt,scala,eclipse | |
# Edit at https://www.gitignore.io/?templates=sbt,scala,eclipse | |
### Eclipse ### | |
.metadata | |
bin/ | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.settings/ | |
.loadpath | |
.recommenders | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# PyDev specific (Python IDE for Eclipse) | |
*.pydevproject | |
# CDT-specific (C/C++ Development Tooling) | |
.cproject | |
# CDT- autotools | |
.autotools | |
# Java annotation processor (APT) | |
.factorypath | |
# PDT-specific (PHP Development Tools) | |
.buildpath | |
# sbteclipse plugin | |
.target | |
# Tern plugin | |
.tern-project | |
# TeXlipse plugin | |
.texlipse | |
# STS (Spring Tool Suite) | |
.springBeans | |
# Code Recommenders | |
.recommenders/ | |
# Annotation Processing | |
.apt_generated/ | |
# Scala IDE specific (Scala & Java development for Eclipse) | |
.cache-main | |
.scala_dependencies | |
.worksheet | |
### Eclipse Patch ### | |
# Eclipse Core | |
.project | |
# JDT-specific (Eclipse Java Development Tools) | |
.classpath | |
# Annotation Processing | |
.apt_generated | |
.sts4-cache/ | |
### SBT ### | |
# Simple Build Tool | |
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control | |
dist/* | |
target/ | |
lib_managed/ | |
src_managed/ | |
project/boot/ | |
project/plugins/project/ | |
.history | |
.cache | |
.lib/ | |
### Scala ### | |
*.class | |
*.log | |
# End of https://www.gitignore.io/api/sbt,scala,eclipse |