project setup

This commit is contained in:
Roman Shevchenko
2016-09-23 17:17:03 +03:00
parent e31bbb06fb
commit cd5b956be5
4 changed files with 23 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
root = true
[*]
indent_style = space
indent_size = 2
+3
View File
@@ -0,0 +1,3 @@
\.gradle/
build/
\.idea/
+14
View File
@@ -0,0 +1,14 @@
buildscript {
repositories { jcenter() }
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:+"
}
}
apply plugin: 'kotlin'
repositories { jcenter() }
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.+"
testCompile "junit:junit:4.+"
}
+1
View File
@@ -0,0 +1 @@
rootProject.name = 'update-server-mock'