Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit c341798

Browse files
committed
Initilaize Koltin, Gradle, IntelliJ project
0 parents  commit c341798

10 files changed

Lines changed: 485 additions & 0 deletions

File tree

.gitignore

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Gradle template
3+
.gradle
4+
/build/
5+
6+
# Ignore Gradle GUI config
7+
gradle-app.setting
8+
9+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
10+
!gradle-wrapper.jar
11+
12+
# Cache of project
13+
.gradletasknamecache
14+
15+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
16+
# gradle/wrapper/gradle-wrapper.properties
17+
### Java template
18+
# Compiled class file
19+
*.class
20+
21+
# Log file
22+
*.log
23+
24+
# BlueJ files
25+
*.ctxt
26+
27+
# Mobile Tools for Java (J2ME)
28+
.mtj.tmp/
29+
30+
# Package Files #
31+
*.jar
32+
*.war
33+
*.nar
34+
*.ear
35+
*.zip
36+
*.tar.gz
37+
*.rar
38+
39+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
40+
hs_err_pid*
41+
### Kotlin template
42+
# Compiled class file
43+
*.class
44+
45+
# Log file
46+
*.log
47+
48+
# BlueJ files
49+
*.ctxt
50+
51+
# Mobile Tools for Java (J2ME)
52+
.mtj.tmp/
53+
54+
# Package Files #
55+
*.jar
56+
*.war
57+
*.nar
58+
*.ear
59+
*.zip
60+
*.tar.gz
61+
*.rar
62+
63+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
64+
hs_err_pid*
65+
### JetBrains template
66+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
67+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
68+
69+
# User-specific stuff
70+
.idea/**/workspace.xml
71+
.idea/**/tasks.xml
72+
.idea/**/dictionaries
73+
.idea/**/shelf
74+
75+
# Sensitive or high-churn files
76+
.idea/**/dataSources/
77+
.idea/**/dataSources.ids
78+
.idea/**/dataSources.local.xml
79+
.idea/**/sqlDataSources.xml
80+
.idea/**/dynamic.xml
81+
.idea/**/uiDesigner.xml
82+
.idea/**/dbnavigator.xml
83+
84+
# Gradle
85+
.idea/**/gradle.xml
86+
.idea/**/libraries
87+
88+
# CMake
89+
cmake-build-debug/
90+
cmake-build-release/
91+
92+
# Mongo Explorer plugin
93+
.idea/**/mongoSettings.xml
94+
95+
# File-based project format
96+
*.iws
97+
98+
# IntelliJ
99+
out/
100+
101+
# mpeltonen/sbt-idea plugin
102+
.idea_modules/
103+
104+
# JIRA plugin
105+
atlassian-ide-plugin.xml
106+
107+
# Cursive Clojure plugin
108+
.idea/replstate.xml
109+
110+
# Crashlytics plugin (for Android Studio and IntelliJ)
111+
com_crashlytics_export_strings.xml
112+
crashlytics.properties
113+
crashlytics-build.properties
114+
fabric.properties
115+
116+
# Editor-based Rest Client
117+
.idea/httpRequests
118+

.idea/misc.xml

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

.idea/modules/sparkutils_main.iml

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

.idea/modules/sparkutils_test.iml

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

.idea/vcs.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.

build.gradle

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
buildscript {
2+
ext.kotlin_version = '1.2.41'
3+
4+
repositories {
5+
mavenCentral()
6+
}
7+
dependencies {
8+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
9+
}
10+
}
11+
12+
plugins {
13+
id 'java'
14+
}
15+
16+
group 'de.debuglevel.sparkutils'
17+
version '0.0.1-SNAPSHOT'
18+
19+
apply plugin: 'kotlin'
20+
21+
sourceCompatibility = 1.8
22+
23+
repositories {
24+
mavenCentral()
25+
}
26+
27+
dependencies {
28+
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
29+
testCompile group: 'junit', name: 'junit', version: '4.12'
30+
}
31+
32+
compileKotlin {
33+
kotlinOptions.jvmTarget = "1.8"
34+
}
35+
compileTestKotlin {
36+
kotlinOptions.jvmTarget = "1.8"
37+
}
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+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip

0 commit comments

Comments
 (0)