Skip to content

Commit

Permalink
[Gradle Release Plugin] - pre tag commit: '2.35.0'.
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed May 17, 2020
2 parents 2c513db + a2f8bc2 commit 05b7a11
Show file tree
Hide file tree
Showing 246 changed files with 7,232 additions and 3,594 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ Build with Gradle

```groovy
dependencies {
implementation "org.seasar.doma:doma-core:2.34.0"
annotationProcessor "org.seasar.doma:doma-processor:2.34.0"
implementation "org.seasar.doma:doma-core:2.35.0"
annotationProcessor "org.seasar.doma:doma-processor:2.35.0"
}
```

Expand Down
26 changes: 14 additions & 12 deletions docs/annotation-processing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,6 @@ and show you how to pass them to build tools.
Options
=======

doma.criteria.enabled
Whether to generate meta classes for the Criteria API.
The default value is ``true``.

doma.criteria.prefix
The name prefix of the meta classes for the Criteria API.
The default value is an empty string.

doma.criteria.suffix
The name suffix of the meta classes for the Criteria API.
The default value is ``_``.

doma.dao.package
The package that the generated implementation classes of interfaces annotated with ``@Dao`` belong to.
The specified value overrides the value of doma.dao.subpackage.
Expand Down Expand Up @@ -62,6 +50,20 @@ doma.expr.functions
The default value is ``org.seasar.doma.expr.ExpressionFunctions``.
This value are used to determine which functions are available in expression comments.

doma.metamodel.enabled
Whether to generate meta classes for the Criteria API.
When the value is ``true``, metamodels are generated for all entity classes
even if they are not specified with ``metamodel = @Metamodel``.
The default value is ``false``.

doma.metamodel.prefix
The name prefix of the metamodel classes for the Criteria API.
The default value is an empty string.

doma.metamodel.suffix
The name suffix of the metamodel classes for the Criteria API.
The default value is ``_``.

doma.resources.dir
The resource directory that contains the resource files such as a doma.compile.config file and sql files.
Specify the value as an absolute path.
Expand Down
4 changes: 2 additions & 2 deletions docs/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Write your build.gradle as follows:
.. code-block:: groovy
dependencies {
implementation "org.seasar.doma:doma-core:2.34.0"
annotationProcessor "org.seasar.doma:doma-processor:2.34.0"
implementation "org.seasar.doma:doma-core:2.35.0"
annotationProcessor "org.seasar.doma:doma-processor:2.35.0"
}
To simplify your build.script, we recommend that you use the `Doma Compile Plugin`_.
Expand Down
Loading

0 comments on commit 05b7a11

Please sign in to comment.