Skip to content

Commit 9e5efac

Browse files
committed
Added gitignore / removed IDE settings
1 parent 92fc266 commit 9e5efac

3 files changed

Lines changed: 134 additions & 16 deletions

File tree

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Java template
3+
# Compiled class file
4+
*.class
5+
6+
# Log file
7+
*.log
8+
9+
# BlueJ files
10+
*.ctxt
11+
12+
# Mobile Tools for Java (J2ME)
13+
.mtj.tmp/
14+
15+
# Package Files #
16+
*.jar
17+
*.war
18+
*.ear
19+
*.zip
20+
*.tar.gz
21+
*.rar
22+
23+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
24+
hs_err_pid*
25+
### JetBrains template
26+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
27+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
28+
29+
# User-specific stuff:
30+
.idea/**/workspace.xml
31+
.idea/**/tasks.xml
32+
.idea/dictionaries
33+
34+
# Sensitive or high-churn files:
35+
.idea/**/dataSources/
36+
.idea/**/dataSources.ids
37+
.idea/**/dataSources.xml
38+
.idea/**/dataSources.local.xml
39+
.idea/**/sqlDataSources.xml
40+
.idea/**/dynamic.xml
41+
.idea/**/uiDesigner.xml
42+
43+
# Gradle:
44+
.idea/**/gradle.xml
45+
.idea/**/libraries
46+
47+
# CMake
48+
cmake-build-debug/
49+
50+
# Mongo Explorer plugin:
51+
.idea/**/mongoSettings.xml
52+
53+
## File-based project format:
54+
*.iws
55+
56+
## Plugin-specific files:
57+
58+
# IntelliJ
59+
out/
60+
61+
# mpeltonen/sbt-idea plugin
62+
.idea_modules/
63+
64+
# JIRA plugin
65+
atlassian-ide-plugin.xml
66+
67+
# Cursive Clojure plugin
68+
.idea/replstate.xml
69+
70+
# Crashlytics plugin (for Android Studio and IntelliJ)
71+
com_crashlytics_export_strings.xml
72+
crashlytics.properties
73+
crashlytics-build.properties
74+
fabric.properties
75+
### Eclipse template
76+
77+
.metadata
78+
bin/
79+
tmp/
80+
*.tmp
81+
*.bak
82+
*.swp
83+
*~.nib
84+
local.properties
85+
.settings/
86+
.loadpath
87+
.recommenders
88+
89+
# External tool builders
90+
.externalToolBuilders/
91+
92+
# Locally stored "Eclipse launch configurations"
93+
*.launch
94+
95+
# PyDev specific (Python IDE for Eclipse)
96+
*.pydevproject
97+
98+
# CDT-specific (C/C++ Development Tooling)
99+
.cproject
100+
101+
# Java annotation processor (APT)
102+
.factorypath
103+
104+
# PDT-specific (PHP Development Tools)
105+
.buildpath
106+
107+
# sbteclipse plugin
108+
.target
109+
110+
# Tern plugin
111+
.tern-project
112+
113+
# TeXlipse plugin
114+
.texlipse
115+
116+
# STS (Spring Tool Suite)
117+
.springBeans
118+
119+
# Code Recommenders
120+
.recommenders/
121+
122+
# Scala IDE specific (Scala & Java development for Eclipse)
123+
.cache-main
124+
.scala_dependencies
125+
.worksheet
126+
127+
128+
/client/target/
129+
/server/target/
130+
.idea/
131+
JavaFx.iml
132+
/server/server.iml
133+
/client/client.iml

JavaFx.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3-
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8" inherit-compiler-output="false">
3+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
44
<output url="file://$MODULE_DIR$/target/classes" />
55
<output-test url="file://$MODULE_DIR$/target/test-classes" />
66
<content url="file://$MODULE_DIR$">

client/Server.iml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)