Skip to content

Commit 7170c28

Browse files
committed
Bump to 1.16-SNAPSHOT
1 parent cfb479d commit 7170c28

File tree

13 files changed

+89
-12
lines changed

13 files changed

+89
-12
lines changed

.github/workflows/build.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

.github/workflows/jdk-ea.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+

http-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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

http-generator-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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

http-generator-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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

@@ -33,7 +33,7 @@
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>

http-generator-helidon/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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

http-generator-javalin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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

http-generator-jex/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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>

tests/test-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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>

0 commit comments

Comments
 (0)