Skip to content

Commit 241cf20

Browse files
committed
add gradle
1 parent 07064a5 commit 241cf20

File tree

2 files changed

+136
-0
lines changed

2 files changed

+136
-0
lines changed

.gitignore

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

README.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
= CDC Workshop Repository

0 commit comments

Comments
 (0)