Skip to content

Commit

Permalink
3.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
AlBaker committed Jun 4, 2015
1 parent a121d7c commit 07feaa3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion stardog-spring-batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
12 changes: 6 additions & 6 deletions stardog-spring-batch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
}
Expand Down
2 changes: 1 addition & 1 deletion stardog-spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 6 additions & 13 deletions stardog-spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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'

Expand Down Expand Up @@ -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'
}
Expand Down

0 comments on commit 07feaa3

Please sign in to comment.