added gitignore to server folder

This commit is contained in:
Sem van der Hoeven
2019-02-24 13:22:54 +01:00
parent 0d65b59455
commit 05d5a5495b
2 changed files with 59 additions and 0 deletions

19
.gitignore vendored
View File

@@ -209,4 +209,23 @@ buildNumber.properties
# Ignore all local history of files # Ignore all local history of files
.history .history
### Gradle ###
.gradle
build/
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### Gradle Patch ###
**/build/
# End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode # End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode

40
Server/.gitignore vendored Normal file
View File

@@ -0,0 +1,40 @@
# # Maven ignores
# target/
# pom.xml.tag
# pom.xml.releaseBackup
# pom.xml.versionsBackup
# pom.xml.next
# release.properties
# dependency-reduced-pom.xml
# buildNumber.properties
# .mvn/timing.properties
# # Exclude maven wrapper
# !/.mvn/wrapper/maven-wrapper.jar
# Created by https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode
# Edit at https://www.gitignore.io/?templates=java,maven,eclipse,intellij,visualstudiocode
### Gradle ###
.gradle
build/
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### Gradle Patch ###
**/build/
# End of https://www.gitignore.io/api/java,maven,eclipse,intellij,visualstudiocode