File tree Expand file tree Collapse file tree 6 files changed +16
-8
lines changed
doma-core/src/main/java/org/seasar/doma/internal Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ Build with Gradle
5757
5858``` groovy
5959dependencies {
60- implementation "org.seasar.doma:doma-core:2.30.0-SNAPSHOT"
61- annotationProcessor "org.seasar.doma:doma-processor:2.30.0-SNAPSHOT"
60+ implementation "org.seasar.doma:doma-core:2.30.0-beta-4- SNAPSHOT"
61+ annotationProcessor "org.seasar.doma:doma-processor:2.30.0-beta-4- SNAPSHOT"
6262}
6363```
6464
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ plugins {
88
99val encoding: String by project
1010val isSnapshot = project.version.toString().endsWith(" SNAPSHOT" )
11+ val secretKeyRingFile: String? =
12+ findProperty(" signing.secretKeyRingFile" )?.toString()?.let {
13+ if (it.isEmpty()) null
14+ else file(it).absolutePath
15+ }
1116
1217allprojects {
1318 val replaceVersionJava by tasks.registering {
@@ -38,6 +43,8 @@ subprojects {
3843 apply (plugin = " com.diffplug.gradle.spotless" )
3944 apply (plugin = " de.marcphilipp.nexus-publish" )
4045
46+ extra[" signing.secretKeyRingFile" ] = secretKeyRingFile
47+
4148 val compileJava by tasks.existing(JavaCompile ::class ) {
4249 dependsOn(tasks.named(" replaceVersionJava" ))
4350 options.encoding = encoding
@@ -99,6 +106,7 @@ subprojects {
99106 from(components[" java" ])
100107 pom {
101108 val projectUrl: String by project
109+ name.set(project.name)
102110 description.set(" DAO Oriented Database Mapping Framework for Java 8+" )
103111 url.set(projectUrl)
104112 licenses {
Original file line number Diff line number Diff 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-SNAPSHOT"
39- annotationProcessor "org.seasar.doma:doma-processor:2.30.0-SNAPSHOT"
38+ implementation "org.seasar.doma:doma-core:2.30.0-beta-4- SNAPSHOT"
39+ annotationProcessor "org.seasar.doma:doma-processor:2.30.0-beta-4- SNAPSHOT"
4040 }
4141
4242 To simplify your build.script, we recommend that you use the `Doma Compile Plugin `_.
Original file line number Diff line number Diff 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-SNAPSHOT"
103- kapt " org.seasar.doma:doma-processor:2.30.0-SNAPSHOT"
102+ implementation " org.seasar.doma:doma-core:2.30.0-beta-4- SNAPSHOT"
103+ kapt " org.seasar.doma:doma-processor:2.30.0-beta-4- SNAPSHOT"
104104 }
105105
106106To simplify your build. script, we recommend you use
Original file line number Diff line number Diff 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-2 " ;
10+ private static final String VERSION = "2.30.0-beta-4 " ;
1111
1212 public static String getName () {
1313 return NAME ;
Original file line number Diff line number Diff line change 11group =org.seasar.doma
2- version =2.30.0-beta-2
2+ version =2.30.0-beta-4
33encoding =UTF-8
44systemProp.org.gradle.internal.publish.checksums.insecure =true
55projectUrl =https://github.com/domaframework/doma
You can’t perform that action at this time.
0 commit comments