Skip to content

Commit a2b3d87

Browse files
committed
empty gradle project, generated using intellij idea
0 parents  commit a2b3d87

File tree

7 files changed

+557
-0
lines changed

7 files changed

+557
-0
lines changed

.gitignore

Lines changed: 247 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,247 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# Generated files
14+
.idea/**/contentModel.xml
15+
16+
# Sensitive or high-churn files
17+
.idea/**/dataSources/
18+
.idea/**/dataSources.ids
19+
.idea/**/dataSources.local.xml
20+
.idea/**/sqlDataSources.xml
21+
.idea/**/dynamic.xml
22+
.idea/**/uiDesigner.xml
23+
.idea/**/dbnavigator.xml
24+
25+
# Gradle
26+
.idea/**/gradle.xml
27+
.idea/**/libraries
28+
29+
# Gradle and Maven with auto-import
30+
# When using Gradle or Maven with auto-import, you should exclude module files,
31+
# since they will be recreated, and may cause churn. Uncomment if using
32+
# auto-import.
33+
# .idea/artifacts
34+
# .idea/compiler.xml
35+
# .idea/jarRepositories.xml
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### macOS template
76+
# General
77+
.DS_Store
78+
.AppleDouble
79+
.LSOverride
80+
81+
# Icon must end with two \r
82+
Icon
83+
84+
# Thumbnails
85+
._*
86+
87+
# Files that might appear in the root of a volume
88+
.DocumentRevisions-V100
89+
.fseventsd
90+
.Spotlight-V100
91+
.TemporaryItems
92+
.Trashes
93+
.VolumeIcon.icns
94+
.com.apple.timemachine.donotpresent
95+
96+
# Directories potentially created on remote AFP share
97+
.AppleDB
98+
.AppleDesktop
99+
Network Trash Folder
100+
Temporary Items
101+
.apdisk
102+
103+
### Eclipse template
104+
.metadata
105+
bin/
106+
tmp/
107+
*.tmp
108+
*.bak
109+
*.swp
110+
*~.nib
111+
local.properties
112+
.settings/
113+
.loadpath
114+
.recommenders
115+
116+
# External tool builders
117+
.externalToolBuilders/
118+
119+
# Locally stored "Eclipse launch configurations"
120+
*.launch
121+
122+
# PyDev specific (Python IDE for Eclipse)
123+
*.pydevproject
124+
125+
# CDT-specific (C/C++ Development Tooling)
126+
.cproject
127+
128+
# CDT- autotools
129+
.autotools
130+
131+
# Java annotation processor (APT)
132+
.factorypath
133+
134+
# PDT-specific (PHP Development Tools)
135+
.buildpath
136+
137+
# sbteclipse plugin
138+
.target
139+
140+
# Tern plugin
141+
.tern-project
142+
143+
# TeXlipse plugin
144+
.texlipse
145+
146+
# STS (Spring Tool Suite)
147+
.springBeans
148+
149+
# Code Recommenders
150+
.recommenders/
151+
152+
# Annotation Processing
153+
.apt_generated/
154+
.apt_generated_test/
155+
156+
# Scala IDE specific (Scala & Java development for Eclipse)
157+
.cache-main
158+
.scala_dependencies
159+
.worksheet
160+
161+
# Uncomment this line if you wish to ignore the project description file.
162+
# Typically, this file would be tracked if it contains build/dependency configurations:
163+
#.project
164+
165+
### Linux template
166+
*~
167+
168+
# temporary files which can be created if a process still has a handle open of a deleted file
169+
.fuse_hidden*
170+
171+
# KDE directory preferences
172+
.directory
173+
174+
# Linux trash folder which might appear on any partition or disk
175+
.Trash-*
176+
177+
# .nfs files are created when an open file is removed but is still being accessed
178+
.nfs*
179+
180+
### Windows template
181+
# Windows thumbnail cache files
182+
Thumbs.db
183+
Thumbs.db:encryptable
184+
ehthumbs.db
185+
ehthumbs_vista.db
186+
187+
# Dump file
188+
*.stackdump
189+
190+
# Folder config file
191+
[Dd]esktop.ini
192+
193+
# Recycle Bin used on file shares
194+
$RECYCLE.BIN/
195+
196+
# Windows Installer files
197+
*.cab
198+
*.msi
199+
*.msix
200+
*.msm
201+
*.msp
202+
203+
# Windows shortcuts
204+
*.lnk
205+
206+
### Java template
207+
# Compiled class file
208+
*.class
209+
210+
# Log file
211+
*.log
212+
213+
# BlueJ files
214+
*.ctxt
215+
216+
# Mobile Tools for Java (J2ME)
217+
.mtj.tmp/
218+
219+
# Package Files #
220+
*.jar
221+
*.war
222+
*.nar
223+
*.ear
224+
*.zip
225+
*.tar.gz
226+
*.rar
227+
228+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
229+
hs_err_pid*
230+
231+
### Gradle template
232+
.gradle
233+
**/build/
234+
!src/**/build/
235+
236+
# Ignore Gradle GUI config
237+
gradle-app.setting
238+
239+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
240+
!gradle-wrapper.jar
241+
242+
# Cache of project
243+
.gradletasknamecache
244+
245+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
246+
# gradle/wrapper/gradle-wrapper.properties
247+

build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group 'com.yourorganization'
6+
version '1.0-SNAPSHOT'
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
testCompile group: 'junit', name: 'junit', version: '4.12'
14+
}

gradle/wrapper/gradle-wrapper.jar

57.5 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)