File tree 4 files changed +20
-11
lines changed
4 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
java : [8]
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v4
13
+ - run : |
14
+ git config --global user.name "Netflix OSS Maintainers"
15
+ git config --global user.email "[email protected] "
13
16
- name : Set up JDK ${{ matrix.java }}
14
17
uses : actions/setup-java@v1
15
18
with :
16
19
java-version : ${{ matrix.java }}
17
- - uses : actions/cache@v2
20
+ - uses : actions/cache@v4
18
21
id : gradle-cache
19
22
with :
20
23
path : |
21
24
~/.gradle/caches
22
25
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
23
- - uses : actions/cache@v2
26
+ - uses : actions/cache@v4
24
27
id : gradle-wrapper-cache
25
28
with :
26
29
path : |
Original file line number Diff line number Diff line change @@ -10,18 +10,21 @@ jobs:
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
+ - run : |
15
+ git config --global user.name "Netflix OSS Maintainers"
16
+ git config --global user.email "[email protected] "
14
17
- name : Set up JDK
15
18
uses : actions/setup-java@v1
16
19
with :
17
20
java-version : 8
18
- - uses : actions/cache@v2
21
+ - uses : actions/cache@v4
19
22
id : gradle-cache
20
23
with :
21
24
path : |
22
25
~/.gradle/caches
23
26
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
24
- - uses : actions/cache@v2
27
+ - uses : actions/cache@v4
25
28
id : gradle-wrapper-cache
26
29
with :
27
30
path : |
Original file line number Diff line number Diff line change @@ -10,20 +10,21 @@ jobs:
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
14
- with :
15
- fetch-depth : 0
13
+ - uses : actions/checkout@v4
14
+ - run : |
15
+ git config --global user.name "Netflix OSS Maintainers"
16
+ git config --global user.email "[email protected] "
16
17
- name : Set up JDK
17
18
uses : actions/setup-java@v1
18
19
with :
19
20
java-version : 8
20
- - uses : actions/cache@v2
21
+ - uses : actions/cache@v4
21
22
id : gradle-cache
22
23
with :
23
24
path : |
24
25
~/.gradle/caches
25
26
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
26
- - uses : actions/cache@v2
27
+ - uses : actions/cache@v4
27
28
id : gradle-wrapper-cache
28
29
with :
29
30
path : |
Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ project(':awsobjectmapper') {
75
75
76
76
compileJava. dependsOn generateAwsMixins
77
77
sourcesJar. dependsOn tasks. withType(JavaCompile ), generateAwsMixins
78
+ javadoc. dependsOn tasks. withType(JavaCompile ), generateAwsMixins
79
+ javadocJar. dependsOn tasks. withType(JavaCompile ), generateAwsMixins
78
80
licenseMain. dependsOn tasks. withType(JavaCompile ), generateAwsMixins
79
81
80
82
sourceSets {
You can’t perform that action at this time.
0 commit comments