Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 2d3fa1a

Browse files
authored
Merge pull request #31 from cm-kato-moqrin/fix-build-with-build-gradle-plugin-id
Fix build with build gradle plugin id
2 parents 042c457 + c1cb93a commit 2d3fa1a

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

docs/build.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,28 +36,28 @@ Write your build.gradle(.kts) as follows:
3636
.. code-block:: kotlin
3737
3838
plugins {
39-
id("org.seasar.doma.compile") version "3.0.1"
39+
id("org.domaframework.doma.compile") version "3.0.1"
4040
}
4141
4242
dependencies {
43-
implementation("org.seasar.doma:doma-core:3.3.0")
44-
annotationProcessor("org.seasar.doma:doma-processor:3.3.0")
43+
implementation("org.seasar.doma:doma-core:3.4.0")
44+
annotationProcessor("org.seasar.doma:doma-processor:3.4.0")
4545
}
4646
4747
.. tab:: Groovy
4848

4949
.. code-block:: groovy
5050
5151
plugins {
52-
id 'org.seasar.doma.compile' version '3.0.1'
52+
id 'org.domaframework.doma.compile' version '3.0.1'
5353
}
5454
5555
dependencies {
56-
implementation 'org.seasar.doma:doma-core:3.3.0'
56+
implementation 'org.seasar.doma:doma-core:3.4.0'
5757
annotationProcessor 'org.seasar.doma:doma-processor:3.3.0'
5858
}
5959
60-
To simplify your build.script(.kts), we recommend that you use the `org.seasar.doma.compile`_ plugin.
60+
To simplify your build.script(.kts), we recommend that you use the `org.domaframework.doma.compile`_ plugin.
6161

6262
See build.gradle.kts in the `getting-started`_ repository as an example.
6363

@@ -163,6 +163,6 @@ Import your project as a Maven project.
163163
Build and run using Maven.
164164

165165

166-
.. _org.seasar.doma.compile: https://github.com/domaframework/doma-compile-plugin
166+
.. _org.domaframework.doma.compile: https://github.com/domaframework/doma-compile-plugin
167167
.. _com.diffplug.eclipse.apt: https://plugins.gradle.org/plugin/com.diffplug.eclipse.apt
168168
.. _getting-started: https://github.com/domaframework/getting-started

docs/kotlin-support.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ You can write build.gradle.kts as follows:
130130
.. code-block:: kotlin
131131
132132
dependencies {
133-
implementation("org.seasar.doma:doma-kotlin:3.3.0")
133+
implementation("org.seasar.doma:doma-kotlin:3.4.0")
134134
}
135135
136136
Code Generation
@@ -151,8 +151,8 @@ For example, you can write build.gradle.kts as follows:
151151
.. code-block:: kotlin
152152
153153
dependencies {
154-
kapt("org.seasar.doma:doma-processor:3.3.0")
155-
implementation("org.seasar.doma:doma-kotlin:3.3.0")
154+
kapt("org.seasar.doma:doma-processor:3.4.0")
155+
implementation("org.seasar.doma:doma-kotlin:3.4.0")
156156
}
157157
158158
To simplify your build script, we recommend you use

docs/locale/ja/LC_MESSAGES/build.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ msgid "Groovy"
7777
msgstr ""
7878

7979
#: ../../build.rst:60
80-
msgid "To simplify your build.script(.kts), we recommend that you use the `org.seasar.doma.compile`_ plugin."
81-
msgstr "build.script(.kts) を簡素化するには、`org.seasar.doma.compile`_ プラグインを使用することをお勧めします。"
80+
msgid "To simplify your build.script(.kts), we recommend that you use the `org.domaframework.doma.compile`_ plugin."
81+
msgstr "build.script(.kts) を簡素化するには、`org.domaframework.doma.compile`_ プラグインを使用することをお勧めします。"
8282

8383
#: ../../build.rst:62
8484
#: ../../build.rst:122

docs/quarkus-support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Gradle
2424
.. code-block:: kotlin
2525
2626
dependencies {
27-
annotationProcessor("org.seasar.doma:doma-processor:3.3.0")
28-
implementation("org.seasar.doma:doma-core:3.3.0")
27+
annotationProcessor("org.seasar.doma:doma-processor:3.4.0")
28+
implementation("org.seasar.doma:doma-core:3.4.0")
2929
implementation("io.quarkiverse.doma:quarkus-doma:0.0.13")
3030
}
3131

docs/slf4j-support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Doma provides the doma-slf4j artifact to adapt SLF4J.
1919
.. code-block:: xml
2020
2121
dependencies {
22-
implementation("org.seasar.doma:doma-slf4j:3.3.0")
22+
implementation("org.seasar.doma:doma-slf4j:3.4.0")
2323
// Use an arbitrary SLF4J binding
2424
runtimeOnly("ch.qos.logback:logback-classic:1.5.7")
2525
}

docs/sql.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ Gradle
856856
.. code-block:: xml
857857
858858
dependencies {
859-
implementation("org.seasar.doma:doma-template:3.3.0")
859+
implementation("org.seasar.doma:doma-template:3.4.0")
860860
}
861861
862862
Usage

0 commit comments

Comments
 (0)