Skip to content

Commit

Permalink
[Gradle Release Plugin] - pre tag commit: '2.45.0'.
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 27, 2021
1 parent 47eb5a2 commit 487df96
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,17 +101,17 @@ For Java projects:

```groovy
dependencies {
implementation("org.seasar.doma:doma-core:2.44.3")
annotationProcessor("org.seasar.doma:doma-processor:2.44.3")
implementation("org.seasar.doma:doma-core:2.45.0")
annotationProcessor("org.seasar.doma:doma-processor:2.45.0")
}
```

For Kotlin projects, use doma-kotlin instead of doma-core and use kapt in place of annotationProcessor:

```groovy
dependencies {
implementation("org.seasar.doma:doma-kotlin:2.44.3")
kapt("org.seasar.doma:doma-processor:2.44.3")
implementation("org.seasar.doma:doma-kotlin:2.45.0")
kapt("org.seasar.doma:doma-processor:2.45.0")
}
```

Expand All @@ -124,7 +124,7 @@ For Java projects:
```xml
...
<properties>
<doma.version>2.44.3</doma.version>
<doma.version>2.45.0</doma.version>
</properties>
...
<dependencies>
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.44.3"
annotationProcessor "org.seasar.doma:doma-processor:2.44.3"
implementation "org.seasar.doma:doma-core:2.45.0"
annotationProcessor "org.seasar.doma:doma-processor:2.45.0"
}
To simplify your build.script, we recommend that you use the `Doma Compile Plugin`_.
Expand Down
6 changes: 3 additions & 3 deletions docs/kotlin-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ You can write build.gradle.kts as follows:
.. code-block:: kotlin
dependencies {
implementation("org.seasar.doma:doma-kotlin:2.44.3")
implementation("org.seasar.doma:doma-kotlin:2.45.0")
}
Code Generation
Expand All @@ -179,8 +179,8 @@ For example, you can write build.gradle.kts as follows:
.. code-block:: kotlin
dependencies {
kapt("org.seasar.doma:doma-processor:2.44.3")
implementation("org.seasar.doma:doma-kotlin:2.44.3")
kapt("org.seasar.doma:doma-processor:2.45.0")
implementation("org.seasar.doma:doma-kotlin:2.45.0")
}
To simplify your build script, we recommend you use
Expand Down
2 changes: 1 addition & 1 deletion docs/slf4j-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Doma provides the doma-slf4j artifact to adapt SLF4J.
.. code-block:: xml
dependencies {
implementation("org.seasar.doma:doma-slf4j:2.44.3")
implementation("org.seasar.doma:doma-slf4j:2.45.0")
// Use an arbitrary SLF4J binding
runtimeOnly("ch.qos.logback:logback-classic:1.2.3")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public final class Artifact {

private static final String NAME = "Doma";

private static final String VERSION = "2.44.4-SNAPSHOT";
private static final String VERSION = "2.45.0";

public static String getName() {
return NAME;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.seasar.doma
version=2.44.4-SNAPSHOT
version=2.45.0
encoding=UTF-8
systemProp.org.gradle.internal.publish.checksums.insecure=true
projectUrl=https://github.com/domaframework/doma
Expand Down

0 comments on commit 487df96

Please sign in to comment.