Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit d1dbc0e

Browse files
committed
Update MongodbGrailsPlugin.groovy
1 parent 5bdb980 commit d1dbc0e

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

grails-plugin/src/main/groovy/grails/plugins/mongodb/MongodbGrailsPlugin.groovy

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,36 @@
11
package grails.plugins.mongodb
22

3-
import com.mongodb.BasicDBList
4-
import com.mongodb.BasicDBObject
5-
import com.mongodb.DBObject
63
import grails.core.GrailsClass
74
import grails.mongodb.bootstrap.MongoDbDataStoreSpringInitializer
85
import grails.plugins.GrailsPlugin
96
import grails.plugins.Plugin
107
import grails.util.Metadata
118
import groovy.transform.CompileStatic
129
import org.grails.core.artefact.DomainClassArtefactHandler
10+
import org.grails.datastore.gorm.plugin.support.ConfigSupport
1311
import org.grails.datastore.mapping.mongo.MongoDatastore
1412
import org.springframework.beans.factory.support.BeanDefinitionRegistry
1513
import org.springframework.context.ConfigurableApplicationContext
1614
import org.springframework.core.env.PropertyResolver
1715
import org.springframework.transaction.PlatformTransactionManager
18-
import org.grails.datastore.gorm.plugin.support.*
1916

2017
class MongodbGrailsPlugin extends Plugin {
2118
def license = "Apache 2.0 License"
22-
def organization = [name: "Grails", url: "http://grails.org/"]
19+
def organization = [name: "Grails", url: "https://grails.org/"]
2320
def developers = [
24-
[name: "Graeme Rocher", email: "[email protected]"]]
25-
def issueManagement = [system: "Github", url: "https://github.com/grails/grails-data-mapping"]
26-
def scm = [url: "https://github.com/grails/grails-data-mapping"]
21+
[name: "Puneet Behl", email: "[email protected]"]]
22+
def issueManagement = [system: "Github", url: "https://github.com/grails/gorm-mongodb"]
23+
def scm = [url: "https://github.com/grails/gorm-mongodb"]
2724

28-
def grailsVersion = "3.0.0 > *"
25+
def grailsVersion = "6.0.0 > *"
2926
def observe = ['services', 'domainClass']
3027
def loadAfter = ['domainClass', 'hibernate', 'hibernate4', 'services']
31-
def author = "Graeme Rocher"
32-
def authorEmail = "[email protected]"
33-
def title = "MongoDB GORM"
34-
def description = 'A plugin that integrates the MongoDB document datastore into Grails, providing a GORM API onto it'
28+
def author = "Puneet Behl"
29+
def authorEmail = "[email protected]"
30+
def title = "GORM MongoDB"
31+
def description = 'A plugin that integrates the MongoDB document datastore into the Grails framework, providing a GORM API onto it'
3532

36-
def documentation = "http://grails.github.io/grails-data-mapping/latest/mongodb/"
33+
def documentation = "https://gorm.grails.org/latest/mongodb/manual/"
3734

3835
@Override
3936
@CompileStatic

0 commit comments

Comments
 (0)