grails-profiles / webpack

A profile for creating applications with node-based frontends using webpack
5 stars 2 forks source link

Hibernate/H2 support #2

Closed misterzirillo closed 6 years ago

misterzirillo commented 7 years ago

The regular web profile includes dependencies for hibernate/h2 out of the box. Is there a reason that they are not included? I'd consider these dependencies to be part of the Grails "convention over configuration" ideology.

That said, I'm glad to see webpack available as a new "convention" :)

sdelamo commented 6 years ago

The latest version of the profile includes h2 dependency.

E.g.

...
..
.
    console "org.grails:grails-console"
    profile "org.grails.profiles:webpack"
    runtime "org.glassfish.web:el-impl:2.1.2-b03"
    runtime "com.h2database:h2"
    runtime "org.apache.tomcat:tomcat-jdbc"
    runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.14.2"
    testCompile "org.grails:grails-gorm-testing-support"
    testCompile "org.grails.plugins:geb"
    testCompile "org.grails:grails-web-testing-support"
    testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
    testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
}