Skip to content

Commit 2f224f6

Browse files
author
Nityan Khanna
committed
added project setup for intellij
1 parent e80adeb commit 2f224f6

15 files changed

+606
-13
lines changed

.gitignore

Lines changed: 138 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,139 @@
1-
api/target
2-
omod/target
3-
.settings/
4-
api/.settings/
5-
api/target/
6-
omod/target/
7-
*.iml
8-
.idea/
1+
# Compiled class file
92
*.class
10-
target/**
11-
org.marc.everest/target/
12-
org.marc.everest.connectors.spring/target/
13-
org.marc.everest.formatters.xml.dt.r1/target/
14-
org.marc.everest.formatters.xml.its1/target/
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
25+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
26+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
27+
28+
# User-specific stuff
29+
.idea/**/workspace.xml
30+
.idea/**/tasks.xml
31+
.idea/**/usage.statistics.xml
32+
.idea/**/dictionaries
33+
.idea/**/shelf
34+
35+
# Sensitive or high-churn files
36+
.idea/**/dataSources/
37+
.idea/**/dataSources.ids
38+
.idea/**/dataSources.local.xml
39+
.idea/**/sqlDataSources.xml
40+
.idea/**/dynamic.xml
41+
.idea/**/uiDesigner.xml
42+
.idea/**/dbnavigator.xml
43+
44+
# Gradle
45+
.idea/**/gradle.xml
46+
.idea/**/libraries
47+
48+
# CMake
49+
cmake-build-debug/
50+
cmake-build-release/
51+
52+
# Mongo Explorer plugin
53+
.idea/**/mongoSettings.xml
54+
55+
# File-based project format
56+
*.iws
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+
76+
# Editor-based Rest Client
77+
.idea/httpRequests
78+
79+
.metadata
80+
bin/
81+
tmp/
82+
*.tmp
83+
*.bak
84+
*.swp
85+
*~.nib
86+
local.properties
87+
.settings/
88+
.loadpath
89+
.recommenders
90+
91+
# External tool builders
92+
.externalToolBuilders/
93+
94+
# Locally stored "Eclipse launch configurations"
95+
*.launch
96+
97+
# PyDev specific (Python IDE for Eclipse)
98+
*.pydevproject
99+
100+
# CDT-specific (C/C++ Development Tooling)
101+
.cproject
102+
103+
# CDT- autotools
104+
.autotools
105+
106+
# Java annotation processor (APT)
107+
.factorypath
108+
109+
# PDT-specific (PHP Development Tools)
110+
.buildpath
111+
112+
# sbteclipse plugin
113+
.target
114+
115+
# Tern plugin
116+
.tern-project
117+
118+
# TeXlipse plugin
119+
.texlipse
120+
121+
# STS (Spring Tool Suite)
122+
.springBeans
123+
124+
# Code Recommenders
125+
.recommenders/
126+
127+
# Scala IDE specific (Scala & Java development for Eclipse)
128+
.cache-main
129+
.scala_dependencies
130+
.worksheet
131+
132+
nbproject/private/
133+
build/
134+
nbbuild/
135+
dist/
136+
nbdist/
137+
.nb-gradle/
138+
139+
*/target/*

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 73 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)