File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,15 @@ jobs:
1818 uses : actions/setup-java@v1
1919 with :
2020 java-version : ${{ matrix.java }}
21+
2122 - name : Cache Maven packages
2223 uses : actions/cache@v4
2324 with :
24- path : |
25- ~/.m2/repository
26- key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml', '.mvn/wrapper/maven-wrapper.properties') }}
27- - name : Build with Maven
28- run : ./mvnw -C -B -e -V clean install -Pproduction
25+ path : ~/.m2/repository
26+ key : ${{ runner.os }}-maven-v2-${{ hashFiles('**/pom.xml') }}
2927
28+ - name : Clean problematic deps
29+ run : rm -rf ~/.m2/repository/com/vaadin
30+
31+ - name : Build with Maven
32+ run : ./mvnw -B -e -V clean install -Pproduction -U
Original file line number Diff line number Diff line change 1111
1212 <properties >
1313 <java .version>17</java .version>
14- <vaadin .version>24.9.13 </vaadin .version>
14+ <vaadin .version>24.10.0 </vaadin .version>
1515 <kotlin .version>2.2.0</kotlin .version>
1616 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1717 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
You can’t perform that action at this time.
0 commit comments