Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
241 changes: 194 additions & 47 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,64 +1,211 @@
# JVM crash related
core.*
hs_err_pid*
# Generated from https://gitignore.io/

# Intellij
.idea/
*.iml
*.ipr
*.iws
out/
### Paperweight ###
run/
paper-api/
paper-server/
purpur-api/
purpur-server/
plazma-api/build.gradle.kts
plazma-server/build.gradle.kts
plazma-server/src/minecraft/

# Eclipse
.classpath
.project
.settings/
### Git ###
# Created by git when using merge tools for conflicts
*.orig
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*_BACKUP_*.txt
*_BASE_*.txt
*_LOCAL_*.txt
*_REMOTE_*.txt

# netbeans
nbproject/
nbactions.xml
### Java ###
*.class
*.log
*.jar

# vscode
.vscode/
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

# Gradle
!gradle-wrapper.jar
# Kotlin DSL
.kotlin/

### Gradle ###
.gradle/
build/
*/build/
run/
javadoc/

# we use maven!
build.xml
# Avoid ignore Gradle wrappper properties
!gradle-wrapper.jar
!gradle-wrapper.properties

# Cache of project
.gradletasknamecache

# Maven
log/
target/
dependency-reduced-pom.xml
# Java heap dump
*.hprof

# various other potential build files
### Eclipse ###
*.tmp
*.bak
*.swp
*~.nib
local.properties
bin/
tmp/
.project/
.metadata/
.settings/
.loadpath/
.recommenders/

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# JDT-specific (Eclipse Java Development Tools)
.classpath

# Java annotation processor (APT)
.factorypath

# Annotation Processing
.apt_generated/
.apt_generated_test/

### JetBrains ###
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# Ignore everything but code style settings and run configurations
.idea/

!.idea/codeStyles
!.idea/runConfigurations

# IntelliJ
out/

# Fleet
.fleet/

### NetBeans ###
**/nbproject/private/
**/nbproject/Makefile-*.mk
**/nbproject/Package-*.bash
nbbuild/
dist/
manifest.mf
nbdist/
.nb-gradle/

# Mac
.DS_Store/
.DS_Store
### Vim ###
# Swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]

# Session
Session.vim
Sessionx.vim

# Temporary
.netrwhist

# Auto-generated tag files
tags

# Persistent undo
[._]*.un~

# vim
.*.sw[a-p]
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Linux temp files
# Local History for Visual Studio Code
.history/

# Ignore all local history of files
.history
.ionide

### Linux ###
*~

# Paperweight
build-data/
*-API
*-MojangAPI
*-Server
paper-api-generator
compare.txt
*.patch
!patches/**/*
upstream
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# iCloud generated files
*.icloud

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk
23 changes: 0 additions & 23 deletions LICENSE.md

This file was deleted.

24 changes: 0 additions & 24 deletions README.md

This file was deleted.

17 changes: 0 additions & 17 deletions build-data/dev-imports.txt

This file was deleted.

Loading
Loading