Skip to content

Commit

Permalink
init: create project
Browse files Browse the repository at this point in the history
  • Loading branch information
myeonginwoo committed Dec 13, 2016
1 parent 3cdbd31 commit ec84ece
Show file tree
Hide file tree
Showing 19 changed files with 562 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gradle/3.1/taskArtifacts/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#Wed Dec 14 01:24:57 KST 2016
Binary file added .gradle/3.1/taskArtifacts/cache.properties.lock
Binary file not shown.
Binary file added .gradle/3.1/taskArtifacts/fileHashes.bin
Binary file not shown.
Binary file added .gradle/3.1/taskArtifacts/fileSnapshots.bin
Binary file not shown.
Binary file added .gradle/3.1/taskArtifacts/taskArtifacts.bin
Binary file not shown.
6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/modules/KtEither.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

213 changes: 213 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
group 'lazysoul'
version '0.1'

buildscript {
ext.kotlin_version = '1.0.5-2'

repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

apply plugin: 'kotlin'

repositories {
mavenCentral()
}

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
1 change: 1 addition & 0 deletions build/kotlin-build/caches/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
11001
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Wed Dec 14 01:24:57 KST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip
Loading

0 comments on commit ec84ece

Please sign in to comment.