|
1 | 1 | package grails.plugins.mongodb |
2 | 2 |
|
3 | | -import com.mongodb.BasicDBList |
4 | | -import com.mongodb.BasicDBObject |
5 | | -import com.mongodb.DBObject |
6 | 3 | import grails.core.GrailsClass |
7 | 4 | import grails.mongodb.bootstrap.MongoDbDataStoreSpringInitializer |
8 | 5 | import grails.plugins.GrailsPlugin |
9 | 6 | import grails.plugins.Plugin |
10 | 7 | import grails.util.Metadata |
11 | 8 | import groovy.transform.CompileStatic |
12 | 9 | import org.grails.core.artefact.DomainClassArtefactHandler |
| 10 | +import org.grails.datastore.gorm.plugin.support.ConfigSupport |
13 | 11 | import org.grails.datastore.mapping.mongo.MongoDatastore |
14 | 12 | import org.springframework.beans.factory.support.BeanDefinitionRegistry |
15 | 13 | import org.springframework.context.ConfigurableApplicationContext |
16 | 14 | import org.springframework.core.env.PropertyResolver |
17 | 15 | import org.springframework.transaction.PlatformTransactionManager |
18 | | -import org.grails.datastore.gorm.plugin.support.* |
19 | 16 |
|
20 | 17 | class MongodbGrailsPlugin extends Plugin { |
21 | 18 | def license = "Apache 2.0 License" |
22 | | - def organization = [name: "Grails", url: "http://grails.org/"] |
| 19 | + def organization = [name: "Grails", url: "https://grails.org/"] |
23 | 20 | 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"] |
27 | 24 |
|
28 | | - def grailsVersion = "3.0.0 > *" |
| 25 | + def grailsVersion = "6.0.0 > *" |
29 | 26 | def observe = ['services', 'domainClass'] |
30 | 27 | 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' |
35 | 32 |
|
36 | | - def documentation = "http://grails.github.io/grails-data-mapping/latest/mongodb/" |
| 33 | + def documentation = "https://gorm.grails.org/latest/mongodb/manual/" |
37 | 34 |
|
38 | 35 | @Override |
39 | 36 | @CompileStatic |
|
0 commit comments