Skip to content

Commit

Permalink
Remove unnecessary script commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
pardom committed Sep 1, 2016
1 parent 3f9dfe4 commit bec7b49
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 38 deletions.
9 changes: 0 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
apply plugin: 'java'
apply plugin: 'kotlin'

sourceCompatibility = 1.7
targetCompatibility = 1.7

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
}

dependencies {
compile project(':core')

Expand Down
9 changes: 0 additions & 9 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
apply plugin: 'java'
apply plugin: 'kotlin'

sourceCompatibility = 1.7
targetCompatibility = 1.7

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
}

dependencies {
compile kotlinStdLib
}
9 changes: 0 additions & 9 deletions desktop/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
apply plugin: 'java'
apply plugin: 'kotlin'

sourceCompatibility = 1.8
targetCompatibility = 1.8

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
}

dependencies {
compile project(':core')
compile project(':app')
Expand Down
11 changes: 0 additions & 11 deletions presentation/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
apply plugin: 'java'
apply plugin: 'kotlin'

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
}

dependencies {
compile project(':core')
compile project(':app')
Expand All @@ -17,8 +11,3 @@ dependencies {
compile reduxRxJavaKotlin
compile rxJava
}

configurations.all {
resolutionStrategy.cacheDynamicVersionsFor 5, 'minutes'
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}

0 comments on commit bec7b49

Please sign in to comment.