Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def publishedProjects = [
'grails-datastore-web',
'grails-testing-support-datamapping',
// simple
'simple-gorm',
'grails-data-simple',
// hibernate5
'hibernate5-boot-plugin',
'hibernate5-database-migration',
Expand Down
2 changes: 1 addition & 1 deletion grails-datastore-gorm-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ dependencies {
//testImplementation project(":grails-datastore-gorm-rx")

// Use the simple datastore to ensure the base implementation works correctly
api project(':simple-gorm')
api project(':grails-data-simple')

testRuntimeOnly 'org.slf4j:slf4j-nop' // Get rid of warning about missing slf4j implementation during tests

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ include 'docs-guide-whats-new'
project(':docs-guide-whats-new').projectDir = file('docs/guide-whats-new')

// Simple implementation (for simple gorm usage, unit tests, and base implementation testing)
include 'simple-gorm'
findProject(':simple-gorm').projectDir = file('grails-data-simple')
include 'grails-data-simple'
findProject(':grails-data-simple').projectDir = file('grails-data-simple')

// Hibernate 5
// Core
Expand Down
Loading