File tree Expand file tree Collapse file tree 3 files changed +30
-7
lines changed
wms/src/main/java/org/geowebcache/service/wms Expand file tree Collapse file tree 3 files changed +30
-7
lines changed Original file line number Diff line number Diff line change 5454 run : |
5555 find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
5656
57+ openjdk25 :
58+ runs-on : [ubuntu-22.04]
59+ steps :
60+ - uses : actions/checkout@v4
61+ - name : Set up JDK 25
62+ uses : actions/setup-java@v3
63+ with :
64+ java-version : 25
65+ distribution : ' temurin'
66+ - name : Maven repository caching
67+ uses : actions/cache@v3
68+ with :
69+ path : ~/.m2/repository
70+ key : gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
71+ restore-keys : |
72+ ${{ runner.os }}-maven-
73+ - name : Build with Maven
74+ run : mvn -B clean install -Dspotless.apply.skip=true -Dall -T2 --file geowebcache/pom.xml
75+ - name : Remove SNAPSHOT jars from repository
76+ run : |
77+ find .m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}
78+
79+
5780 QA :
5881 runs-on : [ubuntu-22.04]
5982 steps :
Original file line number Diff line number Diff line change 7979 <lint >deprecation,unchecked</lint >
8080 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
8181 <jclouds .version>2.3.0</jclouds .version>
82- <mockito .version>5.15.2 </mockito .version>
82+ <mockito .version>5.20.0 </mockito .version>
8383 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
8484 <skipITs >${skipTests}</skipITs >
8585 </properties >
192192 <dependency >
193193 <groupId >org.easymock</groupId >
194194 <artifactId >easymock</artifactId >
195- <version >5.5 .0</version >
195+ <version >5.6 .0</version >
196196 <scope >test</scope >
197197 </dependency >
198198 <dependency >
396396 <plugin >
397397 <groupId >com.diffplug.spotless</groupId >
398398 <artifactId >spotless-maven-plugin</artifactId >
399- <version >2.43 .0</version >
399+ <version >3.0 .0</version >
400400 </plugin >
401401
402402 <plugin >
614614 <configuration >
615615 <java >
616616 <palantirJavaFormat >
617- <version >2.50 .0</version >
617+ <version >2.74 .0</version >
618618 <formatJavadoc >true</formatJavadoc >
619619 </palantirJavaFormat >
620620 </java >
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ public enum HintsLevel {
163163 HintsLevel (int numHint , String mode ) {
164164 this .mode = mode ;
165165 switch (numHint ) {
166- // QUALITY HINTS
166+ // QUALITY HINTS
167167 case 0 :
168168 hints = new RenderingHints (
169169 RenderingHints .KEY_COLOR_RENDERING , RenderingHints .VALUE_COLOR_RENDER_QUALITY );
@@ -180,7 +180,7 @@ public enum HintsLevel {
180180 hints .add (new RenderingHints (
181181 RenderingHints .KEY_STROKE_CONTROL , RenderingHints .VALUE_STROKE_NORMALIZE ));
182182 break ;
183- // DEFAULT HINTS
183+ // DEFAULT HINTS
184184 case 1 :
185185 hints = new RenderingHints (
186186 RenderingHints .KEY_COLOR_RENDERING , RenderingHints .VALUE_COLOR_RENDER_DEFAULT );
@@ -198,7 +198,7 @@ public enum HintsLevel {
198198 hints .add (
199199 new RenderingHints (RenderingHints .KEY_STROKE_CONTROL , RenderingHints .VALUE_STROKE_DEFAULT ));
200200 break ;
201- // SPEED HINTS
201+ // SPEED HINTS
202202 case 2 :
203203 hints = new RenderingHints (
204204 RenderingHints .KEY_COLOR_RENDERING , RenderingHints .VALUE_COLOR_RENDER_SPEED );
You can’t perform that action at this time.
0 commit comments