Skip to content

Commit 1982603

Browse files
committed
[Gradle Release Plugin] - pre tag commit: '2.30.0'.
2 parents a16f6a3 + 3e469f8 commit 1982603

File tree

13 files changed

+106
-40
lines changed

13 files changed

+106
-40
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ Build with Gradle
5757

5858
```groovy
5959
dependencies {
60-
implementation "org.seasar.doma:doma-core:2.30.0-beta-5-SNAPSHOT"
61-
annotationProcessor "org.seasar.doma:doma-processor:2.30.0-beta-5-SNAPSHOT"
60+
implementation "org.seasar.doma:doma-core:2.30.0-beta-6-SNAPSHOT"
61+
annotationProcessor "org.seasar.doma:doma-processor:2.30.0-beta-6-SNAPSHOT"
6262
}
6363
```
6464

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ subprojects {
6464
(options as StandardJavadocDocletOptions).apply {
6565
charSet = encoding
6666
docEncoding = encoding
67-
links("https://docs.oracle.com/javase/jp/8/docs/api/")
67+
links("https://docs.oracle.com/javase/8/docs/api/")
6868
use()
6969
exclude("**/internal/**")
7070
}
@@ -87,8 +87,8 @@ subprojects {
8787
}
8888

8989
dependencies {
90-
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.4.0")
91-
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.4.0")
90+
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.6.2")
91+
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.6.2")
9292
}
9393

9494
configure<JavaPluginExtension> {

docs/annotation-processing.rst

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ doma.config.path
7474
Setting options in Gradle
7575
=========================
7676

77-
- Use `the compilerArgs property
78-
<https://docs.gradle.org/5.0/dsl/org.gradle.api.tasks.compile.CompileOptions.html#org.gradle.api.tasks.compile.CompileOptions:compilerArgs>`_
77+
Use `the compilerArgs property
78+
<https://docs.gradle.org/5.0/dsl/org.gradle.api.tasks.compile.CompileOptions.html#org.gradle.api.tasks.compile.CompileOptions:compilerArgs>`_:
7979

8080
.. code-block:: groovy
8181
@@ -94,8 +94,25 @@ In the case, the options written in build.gradle are used.
9494
Setting options in Eclipse
9595
==========================
9696

97-
Generate eclipse setting files
98-
by using the Gradle plugin `com.diffplug.eclipse.apt<https://plugins.gradle.org/plugin/com.diffplug.eclipse.apt>`_.
97+
Use the Gradle plugin `com.diffplug.eclipse.apt
98+
<https://plugins.gradle.org/plugin/com.diffplug.eclipse.apt>`_
99+
and the processorArgs property:
100+
101+
.. code-block:: groovy
102+
103+
plugins {
104+
id 'com.diffplug.eclipse.apt' version '3.22.0'
105+
}
106+
107+
compileJava {
108+
aptOptions {
109+
processorArgs = [
110+
'doma.dao.subpackage' : 'impl', 'doma.dao.suffix' : 'Impl'
111+
]
112+
}
113+
}
114+
115+
When you run ``gradle eclipse``, eclipse setting files are generated.
99116

100117
Setting options with configuration file
101118
=======================================

docs/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Write your build.gradle as follows:
3535
.. code-block:: groovy
3636
3737
dependencies {
38-
implementation "org.seasar.doma:doma-core:2.30.0-beta-5-SNAPSHOT"
39-
annotationProcessor "org.seasar.doma:doma-processor:2.30.0-beta-5-SNAPSHOT"
38+
implementation "org.seasar.doma:doma-core:2.30.0-beta-6-SNAPSHOT"
39+
annotationProcessor "org.seasar.doma:doma-processor:2.30.0-beta-6-SNAPSHOT"
4040
}
4141
4242
To simplify your build.script, we recommend that you use the `Doma Compile Plugin`_.

docs/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Build from the Command Line
3333
Format the Source Code
3434
======================
3535

36-
We use `google-java-format`_ 1.6 for code formatting.
36+
We use `google-java-format`_ 1.7 for code formatting.
3737

3838
Command Line
3939
------------

docs/kotlin-support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ Add the dependencies using the `kapt` and `implementation` configuration in your
9999
.. code-block:: groovy
100100
101101
dependencies {
102-
implementation "org.seasar.doma:doma-core:2.30.0-beta-5-SNAPSHOT"
103-
kapt "org.seasar.doma:doma-processor:2.30.0-beta-5-SNAPSHOT"
102+
implementation "org.seasar.doma:doma-core:2.30.0-beta-6-SNAPSHOT"
103+
kapt "org.seasar.doma:doma-processor:2.30.0-beta-6-SNAPSHOT"
104104
}
105105
106106
To simplify your build.script, we recommend you use

docs/release-notes.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22
Release notes
33
=============
44

5+
v2.30.0: 2020-04-18
6+
======================
7+
8+
See also `Migration Guide <https://github.com/domaframework/doma/wiki/Migration-Guide-for-Doma-2.30.0>`_.
9+
10+
* `GH374 <https://github.com/domaframework/doma/pull/374>`_
11+
Upgrade Gradle and JUnit
12+
* `GH371 <https://github.com/domaframework/doma/pull/371>`_
13+
Set new version number to the Artifact.java file
14+
* `GH368 <https://github.com/domaframework/doma/pull/368>`_
15+
Correct the path of secretKeyRingFile
16+
* `GH364 <https://github.com/domaframework/doma/pull/364>`_
17+
Split a project in two
18+
* `GH363 <https://github.com/domaframework/doma/pull/363>`_
19+
Support Kotlin's default methods
20+
* `GH361 <https://github.com/domaframework/doma/pull/361>`_
21+
Use the nexus publish plugin
22+
* `GH360 <https://github.com/domaframework/doma/pull/360>`_
23+
Provide a new artifact "doma-processor"
24+
525
v2.29.0: 2020-04-05
626
======================
727

doma-core/src/main/java/org/seasar/doma/internal/Artifact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public final class Artifact {
77

88
private static final String NAME = "Doma";
99

10-
private static final String VERSION = "2.30.0-beta-5-SNAPSHOT";
10+
private static final String VERSION = "2.30.0-beta-6-SNAPSHOT";
1111

1212
public static String getName() {
1313
return NAME;

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.seasar.doma
2-
version=2.30.0-beta-5
2+
version=2.30.0
33
encoding=UTF-8
44
systemProp.org.gradle.internal.publish.checksums.insecure=true
55
projectUrl=https://github.com/domaframework/doma

gradle/wrapper/gradle-wrapper.jar

2.88 KB
Binary file not shown.

0 commit comments

Comments
 (0)