Skip to content

Commit 82a3a67

Browse files
committed
1.1.2-2
1 parent 4908658 commit 82a3a67

File tree

2 files changed

+54
-2
lines changed

2 files changed

+54
-2
lines changed

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
## Created by .ignore support plugin (hsz.mobi)
2+
#### JetBrains template
3+
## Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
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/dictionaries
10+
#
11+
## Sensitive or high-churn files:
12+
#.idea/**/dataSources/
13+
#.idea/**/dataSources.ids
14+
#.idea/**/dataSources.xml
15+
#.idea/**/dataSources.local.xml
16+
#.idea/**/sqlDataSources.xml
17+
#.idea/**/dynamic.xml
18+
#.idea/**/uiDesigner.xml
19+
#
20+
## Gradle:
21+
#.idea/**/gradle.xml
22+
#.idea/**/libraries
23+
#
24+
## Mongo Explorer plugin:
25+
#.idea/**/mongoSettings.xml
26+
#
27+
### File-based project format:
28+
#*.iws
29+
#
30+
### Plugin-specific files:
31+
#
32+
## IntelliJ
33+
#/out/
34+
#
35+
## mpeltonen/sbt-idea plugin
36+
#.idea_modules/
37+
#
38+
## JIRA plugin
39+
#atlassian-ide-plugin.xml
40+
#
41+
## Crashlytics plugin (for Android Studio and IntelliJ)
42+
#com_crashlytics_export_strings.xml
43+
#crashlytics.properties
44+
#crashlytics-build.properties
45+
#fabric.properties
46+
#
47+
#.gitignore
48+
#.gradle/
49+
#.idea/
50+
#build/
51+
52+
.idea/

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'kotlin'
33

44
buildscript {
55

6-
ext.kotlinVersion = '1.1.2-eap-77'
6+
ext.kotlinVersion = '1.1.2-2'
77

88
repositories {
99
mavenCentral()
@@ -23,8 +23,8 @@ dependencies {
2323

2424
repositories {
2525
mavenCentral()
26-
maven { url "https://jitpack.io" }
2726
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
27+
maven { url "https://jitpack.io" }
2828
}
2929

3030
task packageSources(type: Jar, dependsOn: 'classes') {

0 commit comments

Comments
 (0)