Skip to content

Commit 333b8e1

Browse files
authored
Fix Gradle tasks in the ecj job (#1249)
2 parents b6a0c1d + 0fb8c22 commit 333b8e1

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
/home/runner/work/doma/doma/.gradle
110110
111111
ecj:
112-
name: Build and Integration Test with Eclipse Compiler for Java (ECJ)
112+
name: Test with ECJ
113113
runs-on: ubuntu-latest
114114
timeout-minutes: 15
115115

@@ -134,14 +134,14 @@ jobs:
134134
./gradlew
135135
-Porg.gradle.java.installations.fromEnv=JAVA_HOME_${{ env.JDK_VERSION_OLDEST }}_X64,JAVA_HOME_${{ env.JDK_VERSION_LATEST }}_X64
136136
-Pcompiler=ecj
137-
:doma-processor:build
138-
:integration-test-java:build
137+
:doma-processor:test
138+
:integration-test-java:test
139139
140140
- name: Upload reports
141141
if: failure()
142142
uses: actions/upload-artifact@v4
143143
with:
144-
name: test-${{ matrix.driver }}
144+
name: ecj
145145
path: |
146146
./**/build/reports
147147
/home/runner/work/doma/doma/.gradle

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ plugins {
9999
}
100100

101101
dependencies {
102-
implementation("org.seasar.doma:doma-core:3.2.0")
103-
annotationProcessor("org.seasar.doma:doma-processor:3.2.0")
102+
implementation("org.seasar.doma:doma-core:3.1.0")
103+
annotationProcessor("org.seasar.doma:doma-processor:3.1.0")
104104
}
105105
```
106106

@@ -112,8 +112,8 @@ plugins {
112112
}
113113

114114
dependencies {
115-
implementation("org.seasar.doma:doma-kotlin:3.2.0")
116-
kapt("org.seasar.doma:doma-processor:3.2.0")
115+
implementation("org.seasar.doma:doma-kotlin:3.1.0")
116+
kapt("org.seasar.doma:doma-processor:3.1.0")
117117
}
118118
```
119119

@@ -126,7 +126,7 @@ For Java projects:
126126
```xml
127127
...
128128
<properties>
129-
<doma.version>3.2.0</doma.version>
129+
<doma.version>3.1.0</doma.version>
130130
</properties>
131131
...
132132
<dependencies>

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 = "3.2.1-SNAPSHOT";
10+
private static final String VERSION = "3.1.1-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=3.2.1-SNAPSHOT
2+
version=3.1.1-SNAPSHOT
33
encoding=UTF-8
44
projectUrl=https://github.com/domaframework/doma
55
githubUrl=[email protected]:domaframework/doma.git

0 commit comments

Comments
 (0)