diff --git a/README.md b/README.md index c8bcf05..71a2564 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Stardog-Spring ========== Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) -_Current Version **3.0.0**_ +_Current Version **3.1.0**_ This is [Spring Framework](http://springsource.org) integration for [Stardog RDF Database](http://stardog.com). These bindings provide Spring aware beans to provide an analogous feature set to Spring's diff --git a/stardog-spring-batch/README.md b/stardog-spring-batch/README.md index bd82244..9758999 100644 --- a/stardog-spring-batch/README.md +++ b/stardog-spring-batch/README.md @@ -2,7 +2,7 @@ Stardog-Spring-Batch ========== Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) -_Current Version **3.0.0**_ +_Current Version **3.1.0**_ This is [Spring Framework](http://springsource.org) integration for [Stardog RDF Database](http://stardog.com). This API provides Spring Batch readers/writers for building batch applications with Stardog. diff --git a/stardog-spring-batch/build.gradle b/stardog-spring-batch/build.gradle index 0a04bb0..808060d 100644 --- a/stardog-spring-batch/build.gradle +++ b/stardog-spring-batch/build.gradle @@ -6,7 +6,7 @@ apply plugin:"signing" apply from:'https://raw.github.com/breskeby/gradleplugins/master/emmaPlugin/emma.gradle' group = 'com.complexible.stardog' -version = '3.0.0' +version = '3.1.0' repositories { maven { url "http://maven.stardog.com" } @@ -36,10 +36,10 @@ dependencies { compile ('org.springframework.batch:spring-batch-core:2.2.6.RELEASE') compile ('org.springframework.batch:spring-batch-infrastructure:2.2.6.RELEASE') - compile ('com.complexible.stardog:client-http:3.0') - compile ('com.complexible.stardog:client-snarl:3.0') - compile ('com.complexible.stardog:stardog-spring:3.0.0') - testCompile ('com.complexible.stardog:server:3.0') + compile ('com.complexible.stardog:client-http:3.1') + compile ('com.complexible.stardog:client-snarl:3.1') + compile ('com.complexible.stardog:stardog-spring:3.1.0') + testCompile ('com.complexible.stardog:server:3.1') testCompile group: 'junit', name: 'junit', version: '4.8.2' testCompile group: 'org.springframework', name:'spring-test', version:'3.0.5.RELEASE' @@ -117,7 +117,7 @@ uploadArchives { configure(install.repositories.mavenInstaller) { pom.project { - version '2.2.4' + version '3.1.0' artifactId 'stardog-spring-batch' groupId 'com.complexible.stardog' } diff --git a/stardog-spring/README.md b/stardog-spring/README.md index fc02775..dc42a9d 100644 --- a/stardog-spring/README.md +++ b/stardog-spring/README.md @@ -2,7 +2,7 @@ Stardog-Spring ========== Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) -_Current Version **3.0.0**_ +_Current Version **3.1.0**_ This is [Spring Framework](http://springsource.org) integration for [Stardog RDF Database](http://stardog.com). This project provides the core Spring integration, with the SnarlTemplate and DataSource classes. Other projects build on this as the basis for diff --git a/stardog-spring/build.gradle b/stardog-spring/build.gradle index 3c8bd75..b85e526 100644 --- a/stardog-spring/build.gradle +++ b/stardog-spring/build.gradle @@ -6,7 +6,7 @@ apply plugin:"signing" apply from:'https://raw.github.com/breskeby/gradleplugins/master/emmaPlugin/emma.gradle' group = 'com.complexible.stardog' -version = '3.0.0' +version = '3.1.0' repositories { maven { url "http://maven.stardog.com" } @@ -32,18 +32,11 @@ dependencies { compile ('org.springframework:spring-tx:4.1.2.RELEASE') compile ('org.slf4j:slf4j-api:1.6.1') - compile ('com.complexible.stardog:client-http:3.0') - compile ('com.complexible.stardog:client-snarl:3.0') - testCompile ('com.complexible.stardog:server:3.0') + compile ('com.complexible.stardog:client-http:3.1') + + compile ('com.complexible.stardog:client-snarl:3.1') + testCompile ('com.complexible.stardog:server:3.1') - /* - compile ('org.openrdf.sesame:sesame:2.7.14') { - exclude group:'org.slf4j' - } -*/ - - //testCompile fileTree(dir: stardogLocation, include: '**/*.jar', exclude:"**/spring*.jar") - testCompile group: 'junit', name: 'junit', version: '4.8.2' testCompile group: 'org.springframework', name:'spring-test', version:'3.0.5.RELEASE' @@ -121,7 +114,7 @@ uploadArchives { // Used for "gradle install" configure(install.repositories.mavenInstaller) { pom.project { - version '3.0.0' + version '3.1.0' artifactId 'stardog-spring' groupId 'com.complexible.stardog' }