Skip to content

Commit

Permalink
doc: configuration asciidoc macro and build plugin 5.4.x (#450)
Browse files Browse the repository at this point in the history
closes #448
  • Loading branch information
wetted authored Feb 7, 2023
1 parent 313412d commit 9389e3c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['11', '17']
graalvm: ['latest', 'dev']
java: ['17']
graalvm: ['latest']
steps:
# https://github.com/actions/virtual-environments/issues/709
- name: Free disk space
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluginManagement {
}

plugins {
id 'io.micronaut.build.shared.settings' version '5.3.14'
id 'io.micronaut.build.shared.settings' version '5.4.5'
}

dependencyResolutionManagement {
Expand Down
4 changes: 2 additions & 2 deletions src/main/docs/guide/gorm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You will likely want to add a connection pool implementation and potentially the
You can now use the same http://gorm.grails.org/latest/hibernate/manual/index.html#configuration[configuration properties described in the GORM documentation]. For example:

.Configuring GORM for Hibernate
[source,yaml]
[configuration]
----
dataSource:
pooled: true
Expand Down Expand Up @@ -153,7 +153,7 @@ To add support for GORM for MongoDB, first configure the MongoDB connection as p

dependency:micronaut-mongo-gorm[groupId="io.micronaut.groovy"]

WARNING: For GORM for MongoDB you will need to configure the database name separately as the `grails.mongodb.datataseName` property in `application.yml`.
WARNING: For GORM for MongoDB you will need to configure the database name separately as the `grails.mongodb.datataseName` property in the application configuration file.

The following should be noted regarding using GORM for MongoDB in Micronaut:

Expand Down
2 changes: 1 addition & 1 deletion src/main/docs/guide/gorm/multitenancyGorm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The following table contains all of the `TenantResolver implementations that shi

You will need to add something like the following snippet to your app configuration:

[source, yaml]
[configuration]
----
grails:
gorm:
Expand Down

0 comments on commit 9389e3c

Please sign in to comment.