Skip to content

Commit

Permalink
Update hibernate plugin info
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Mar 2, 2024
1 parent 67130e1 commit c0a6a54
Showing 1 changed file with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,30 @@ import org.grails.core.artefact.DomainClassArtefactHandler
* Plugin that integrates Hibernate into a Grails application
*
* @author Graeme Rocher
* @author Michael Yan
* @since 3.0
*/
@CompileStatic
class HibernateGrailsPlugin extends Plugin {

public static final String DEFAULT_DATA_SOURCE_NAME = HibernateDatastoreSpringInitializer.DEFAULT_DATA_SOURCE_NAME

def grailsVersion = '3.1.0 > *'
def grailsVersion = '2022.0.0 > *'

def author = 'Grails Core Team'
def title = 'Hibernate 5 for Grails'
def description = 'Provides integration between Grails and Hibernate 5 through GORM'
def documentation = 'http://grails.github.io/grails-data-mapping/latest/'
def author = 'Michael Yan'
def title = 'Hibernate 5 Plugin'
def description = 'Provides integration between Grace and Hibernate 5 through GORM'
def documentation = 'http://github.com/graceframework/grace-data-hibernate'

def observe = ['domainClass']
def loadAfter = ['controllers', 'domainClass']
def watchedResources = ['file:./grails-app/conf/hibernate/**.xml']
def watchedResources = ['file:./app/conf/hibernate/**.xml']
def pluginExcludes = ['src/templates/**']

def license = 'APACHE'
def organization = [name: 'Grails', url: 'http://grails.org']
def issueManagement = [system: 'Github', url: 'https://github.com/grails/grails-data-mapping/issues']
def scm = [url: 'https://github.com/grails/grails-data-mapping']
def organization = [name: 'Grace Framework', url: 'https://graceframework.org']
def issueManagement = [system: 'Github', url: 'https://github.com/graceframework/grace-data-hibernate/issues']
def scm = [url: 'https://github.com/graceframework/grace-data-hibernate']

Set<String> dataSourceNames

Expand Down

0 comments on commit c0a6a54

Please sign in to comment.