Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
update to latest versions of mongodb dependencies, and change version…
Browse files Browse the repository at this point in the history
… to 1.3.0 snapshot
  • Loading branch information
graemerocher committed Jun 24, 2013
1 parent d424c20 commit 9e4f061
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -46,14 +46,14 @@ allprojects {

subprojects {
ext {
releaseType = "RELEASE"
releaseType = "BUILD-SNAPSHOT"
// releaseType = "BUILD-SNAPSHOT"
//releaseType = "RC3"
isCiBuild = project.hasProperty("isCiBuild")
isBuildSnapshot = releaseType == "BUILD-SNAPSHOT"
}

version = "1.1.8.${releaseType}"
version = "1.1.9.${releaseType}"
group = "org.grails"


Expand Down
2 changes: 1 addition & 1 deletion grails-datastore-gorm-mongo/build.gradle
Expand Up @@ -4,7 +4,7 @@ configurations {
}

dependencies {
compile("com.gmongo:gmongo:1.0") {
compile("com.gmongo:gmongo:1.2") {
transitive = false
}
grails("org.grails:grails-core:$grailsVersion")
Expand Down
2 changes: 1 addition & 1 deletion grails-datastore-mongo/build.gradle
Expand Up @@ -3,5 +3,5 @@ dependencies {
compile project(":grails-datastore-core")

compile "org.mongodb:mongo-java-driver:2.11.1"
compile("org.springframework.data:spring-data-mongodb:1.2.0.RELEASE")
compile("org.springframework.data:spring-data-mongodb:1.2.1.RELEASE")
}
4 changes: 2 additions & 2 deletions grails-plugins/mongodb/MongodbGrailsPlugin.groovy
Expand Up @@ -11,8 +11,8 @@ class MongodbGrailsPlugin {
def issueManagement = [system: "JIRA", url: "http://jira.grails.org/browse/GPMONGODB"]
def scm = [url: "https://github.com/SpringSource/grails-data-mapping"]

def version = "1.2.0"
def grailsVersion = "2.0.0 > *"
def version = "1.3.0.BUILD-SNAPSHOT"
def grailsVersion = "2.1.4 > *"
def observe = ['services', 'domainClass']
def loadAfter = ['domainClass', 'hibernate', 'services', 'cloudFoundry']
def author = "Graeme Rocher"
Expand Down
2 changes: 1 addition & 1 deletion grails-plugins/mongodb/application.properties
@@ -1 +1 @@
app.grails.version=2.2.0
app.grails.version=2.2.3
16 changes: 9 additions & 7 deletions grails-plugins/mongodb/grails-app/conf/BuildConfig.groovy
Expand Up @@ -9,9 +9,10 @@ grails.project.dependency.resolution = {
log 'warn'

repositories {
mavenCentral()
grailsCentral()
mavenLocal()
mavenCentral()

}

dependencies {
Expand All @@ -26,13 +27,14 @@ grails.project.dependency.resolution = {
transitive = false
}

compile("org.mongodb:mongo-java-driver:2.10.1", excludes)
compile("org.springframework.data:spring-data-mongodb:1.1.0.RELEASE", excludes)
compile("org.springframework.data:spring-data-commons-core:1.4.0.RELEASE", excludes)
runtime("com.gmongo:gmongo:1.0", excludes)
compile("org.mongodb:mongo-java-driver:2.11.1", excludes)
compile("org.springframework.data:spring-data-mongodb:1.2.1.RELEASE", excludes)
compile("org.springframework.data:spring-data-commons-core:1.4.1.RELEASE", excludes)
runtime 'org.springframework.data:spring-data-commons:1.5.1.RELEASE'
runtime("com.gmongo:gmongo:1.2", excludes)

def datastoreVersion = "1.1.6.RELEASE"
def mongoDatastoreVersion = "1.2.0.RELEASE"
def datastoreVersion = "1.1.9.BUILD-SNAPSHOT"
def mongoDatastoreVersion = "1.3.0.BUILD-SNAPSHOT"

compile ("org.grails:grails-datastore-mongo:$mongoDatastoreVersion",
"org.grails:grails-datastore-gorm-mongo:$mongoDatastoreVersion",excludes)
Expand Down

0 comments on commit 9e4f061

Please sign in to comment.