File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed
jsonschema2pojo-gradle-plugin Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Java Sample
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+ workflow_dispatch :
11+
12+ jobs :
13+ buildTest :
14+ name : Build JDK ${{ matrix.java }}
15+ runs-on : ubuntu-latest
16+ continue-on-error : true # allow jobs to complete even if some fail
17+ strategy :
18+ matrix :
19+ include :
20+ - java : 8
21+ gradle : 7.6.4
22+ - java : 11
23+ gradle : 7.6.4
24+ - java : 17
25+ gradle : 8.9
26+ - java : 21
27+ gradle : 8.9
28+ steps :
29+ - name : Setup Maven Action
30+ 31+ with :
32+ checkout-fetch-depth : 0
33+ java-version : ${{ matrix.java }}
34+ java-distribution : temurin
35+ - name : Install latest jsonschema2pojo SNAPSHOT
36+ run : ./mvnw -U -B install -DskipTests -Dmaven.javadoc.skip -Dmaven.site.skip
37+ - name : Setup Gradle
38+ uses : gradle/actions/setup-gradle@v4
39+ with :
40+ gradle-version : ${{ matrix.gradle }}
41+ - name : Build projects
42+ run : cd jsonschema2pojo-gradle-plugin/example/java && gradle --stacktrace build
Original file line number Diff line number Diff line change 153153 <configuration >
154154 <useFile >false</useFile >
155155 <testSourceDirectory >${integrationTestSourceDirectory} </testSourceDirectory >
156+ <systemPropertyVariables >
157+ <it .gradle.version>${gradle.version} </it .gradle.version>
158+ </systemPropertyVariables >
156159 </configuration >
157160 </plugin >
158161 <plugin >
You can’t perform that action at this time.
0 commit comments