Skip to content

Commit

Permalink
Bump version and dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
pardom committed Dec 19, 2016
1 parent 23c9200 commit 79ab596
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
@@ -1,5 +1,5 @@
group 'redux'
version '1.1.1'
version '1.2.0'

buildscript {
ext.kotlin_version = '1.0.5-3'
Expand Down
15 changes: 7 additions & 8 deletions lib/build.gradle
Expand Up @@ -2,26 +2,25 @@ apply plugin: 'kotlin'

repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "http://repository.jetbrains.com/all" }
}

configurations {
ktlint
}

dependencies {
compile 'com.github.jvm-redux.jvm-redux-api:api:sepcs-SNAPSHOT'
compile 'com.github.jvm-redux.jvm-redux-api:api:1.2.0'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

testCompile 'junit:junit:4.12'
testCompile 'com.nhaarman:mockito-kotlin:0.3.1'
testCompile 'org.jetbrains.spek:spek:1.0.9'
testCompile 'org.mockito:mockito-core:2.0.86-beta'
testCompile 'com.github.jvm-redux.jvm-redux-api:specs:sepcs-SNAPSHOT'
testCompile 'com.nhaarman:mockito-kotlin:1.0.1'
testCompile 'org.jetbrains.kotlin:kotlin-test:1.0.5-3'
testCompile 'org.jetbrains.spek:spek-api:1.1.0-beta2'
testCompile 'org.mockito:mockito-core:2.3.7'
testCompile 'com.github.jvm-redux.jvm-redux-api:specs:1.2.0'

ktlint 'com.github.shyiko:ktlint:0.1.2'
ktlint 'com.github.shyiko:ktlint:0.2.2'
}

task ktlint(type: JavaExec) {
Expand Down
2 changes: 2 additions & 0 deletions lib/src/test/kotlin/redux/MiddlewareTest.kt
@@ -1,6 +1,8 @@
package redux

import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.describe
import org.jetbrains.spek.api.dsl.it
import redux.api.Dispatcher
import redux.api.Store
import redux.api.enhancer.Middleware
Expand Down
2 changes: 2 additions & 0 deletions lib/src/test/kotlin/redux/StoreTest.kt
@@ -1,6 +1,8 @@
package redux

import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.describe
import org.jetbrains.spek.api.dsl.it
import org.mockito.Mockito.mock
import org.mockito.Mockito.times
import org.mockito.Mockito.verify
Expand Down
4 changes: 2 additions & 2 deletions lib/src/test/kotlin/redux/api/VanillaStoreSpecsTest.kt
@@ -1,9 +1,9 @@
package redux.api

class VanillaStoreSpecsTest : redux.api.StoreTest() {
class VanillaStoreSpecsTest : StoreTest() {

override fun <S : Any> createStore(reducer: Reducer<S>, state: S): Store<S> {
return redux.createStore(reducer, state, Store.Enhancer { it })
}

}
}

0 comments on commit 79ab596

Please sign in to comment.