File tree Expand file tree Collapse file tree 13 files changed +89
-12
lines changed
Expand file tree Collapse file tree 13 files changed +89
-12
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on : [push, pull_request, workflow_dispatch]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ${{ matrix.os }}
9+ permissions :
10+ contents : read
11+ packages : write
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ java_version : [11,17]
16+ os : [ubuntu-latest]
17+
18+ steps :
19+ - uses : actions/checkout@v2
20+ - name : Set up Java
21+ uses : actions/setup-java@v2
22+ with :
23+ java-version : ${{ matrix.java_version }}
24+ distribution : ' zulu'
25+ - name : Maven cache
26+ uses : actions/cache@v2
27+ env :
28+ cache-name : maven-cache
29+ with :
30+ path :
31+ ~/.m2
32+ key : build-${{ env.cache-name }}
33+ - name : Maven version
34+ run : mvn --version
35+ - name : Build with Maven
36+ run : mvn clean test
Original file line number Diff line number Diff line change 1+
2+ name : avaje-inject EA
3+
4+ on :
5+ workflow_dispatch :
6+ schedule :
7+ - cron : ' 39 1 * * 1,3,5'
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ${{ matrix.os }}
13+ permissions :
14+ contents : read
15+ packages : write
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ java_version : [GA,EA] # # valhalla (fails javadoc)
20+ os : [ubuntu-latest]
21+
22+ steps :
23+ - uses : actions/checkout@v2
24+ - name : Set up Java
25+ uses : oracle-actions/setup-java@v1
26+ with :
27+ website : jdk.java.net
28+ release : ${{ matrix.java_version }}
29+ - name : Maven cache
30+ uses : actions/cache@v2
31+ env :
32+ cache-name : maven-cache
33+ with :
34+ path :
35+ ~/.m2
36+ key : build-${{ env.cache-name }}
37+ - name : Maven version
38+ run : mvn --version
39+ - name : Build with Maven
40+ run : mvn package
41+
Original file line number Diff line number Diff line change 44 <parent >
55 <groupId >io.avaje</groupId >
66 <artifactId >avaje-http-generator-parent</artifactId >
7- <version >1.13 -SNAPSHOT</version >
7+ <version >1.16 -SNAPSHOT</version >
88 <relativePath >..</relativePath >
99 </parent >
1010
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >io.avaje</groupId >
77 <artifactId >avaje-http-generator-parent</artifactId >
8- <version >1.13 -SNAPSHOT</version >
8+ <version >1.16 -SNAPSHOT</version >
99 <relativePath >..</relativePath >
1010 </parent >
1111
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >io.avaje</groupId >
99 <artifactId >avaje-http-generator-parent</artifactId >
10- <version >1.13 -SNAPSHOT</version >
10+ <version >1.16 -SNAPSHOT</version >
1111 <relativePath >..</relativePath >
1212 </parent >
1313
3333 <dependency >
3434 <groupId >io.avaje</groupId >
3535 <artifactId >avaje-http-api</artifactId >
36- <version >1.13 -SNAPSHOT</version >
36+ <version >1.16 -SNAPSHOT</version >
3737 </dependency >
3838
3939 <dependency >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >io.avaje</groupId >
99 <artifactId >avaje-http-generator-parent</artifactId >
10- <version >1.13 -SNAPSHOT</version >
10+ <version >1.16 -SNAPSHOT</version >
1111 <relativePath >..</relativePath >
1212 </parent >
1313
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >io.avaje</groupId >
99 <artifactId >avaje-http-generator-parent</artifactId >
10- <version >1.13 -SNAPSHOT</version >
10+ <version >1.16 -SNAPSHOT</version >
1111 <relativePath >..</relativePath >
1212 </parent >
1313
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >io.avaje</groupId >
99 <artifactId >avaje-http-generator-parent</artifactId >
10- <version >1.13 -SNAPSHOT</version >
10+ <version >1.16 -SNAPSHOT</version >
1111 <relativePath >..</relativePath >
1212 </parent >
1313
Original file line number Diff line number Diff line change 44
55 <groupId >io.avaje</groupId >
66 <artifactId >avaje-http-generator-parent</artifactId >
7- <version >1.13 -SNAPSHOT</version >
7+ <version >1.16 -SNAPSHOT</version >
88 <packaging >pom</packaging >
99
1010 <parent >
Original file line number Diff line number Diff line change 3636 <dependency >
3737 <groupId >io.avaje</groupId >
3838 <artifactId >avaje-http-api</artifactId >
39- <version >1.13 -SNAPSHOT</version >
39+ <version >1.16 -SNAPSHOT</version >
4040 </dependency >
4141
4242 <dependency >
You can’t perform that action at this time.
0 commit comments