Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
FDelporte committed Nov 22, 2024
1 parent 4d3c5ea commit ff3658a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.4</version>
<version>3.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand All @@ -20,9 +20,11 @@
<java.version>17</java.version>

<!-- Dependencies -->
<pi4j.version>2.6.0</pi4j.version>
<pi4j.version>2.7.0</pi4j.version>
<springdoc.version>2.5.0</springdoc.version>
<vaadin.version>24.3.10</vaadin.version>
<vaadin.version>24.5.5</vaadin.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ private void showBoard(BoardModel boardModel) {
holder.add(getLabelValue("Model", boardModel.getModel().name()));
holder.add(getLabelValue("Header version", boardModel.getHeaderVersion().getLabel()));
holder.add(getLabelValue("Release date", boardModel.getReleaseDate().toString()));
holder.add(getLabelValue("Board code(s)", String.join(", ", boardModel.getBoardCodes())));
holder.add(getLabelValue("SOC", boardModel.getSoc().name()
+ " / " + boardModel.getSoc().getInstructionSet().getLabel()));
holder.add(getLabelValue("CPU", boardModel.getNumberOfCpu()
Expand Down
8 changes: 2 additions & 6 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
spring.mvc.pathmatch.matching-strategy=ant-path-matcher
server.port=${PORT:8080}
spring.mustache.check-template-location=false
# Dev tools
Expand All @@ -7,10 +6,7 @@ spring.devtools.add-properties=false
vaadin.launch-browser=true
# To improve the performance during development.
# For more information https://vaadin.com/docs/flow/spring/tutorial-spring-configuration.html#special-configuration-parameters
vaadin.whitelisted-packages=com.vaadin,org.vaadin,dev.hilla,com.example.application
# This is a preview release of the Side Navigation component.
# https://vaadin.com/docs/latest/components/side-nav/#feature-flag
com.vaadin.experimental.sideNavComponent=true
vaadin.allowed-packages=com.vaadin,org.vaadin,dev.hilla,com.example.application
# Correct mapping of Swagger UI
# See https://github.com/vaadin/flow/issues/10163
#vaadin.url-mapping=/web/*
Expand All @@ -19,4 +15,4 @@ vaadin.exclude-urls=/api/**,/swagger-ui/**
springdoc.api-docs.enabled=true
springdoc.api-docs.path=/api/docs
springdoc.swagger-ui.enabled=true
springdoc.swagger-ui.operationsSorter=method
springdoc.swagger-ui.operationsSorter=method
2 changes: 1 addition & 1 deletion src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- https://howtodoinjava.com/log4j2/log4j2-xml-configuration-example/ -->
<Configuration status="warn">
<Properties>
<!-- <Property name="basePath">/Users/frankdelporte/tmp/log/</Property> -->
<!-- <Property name="basePath">/Users/frank/tmp/log/</Property> -->
<Property name="basePath">/home/ft/pi4j-board-info-service/logs/</Property>
</Properties>

Expand Down
11 changes: 9 additions & 2 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@
// This is needed for TypeScript compiler to declare and export as a TypeScript module.
// It is recommended to commit this file to the VCS.
// You might want to change the configurations to fit your preferences
declare module '*.css' {
import { CSSResultGroup } from 'lit';
declare module '*.css?inline' {
import type { CSSResultGroup } from 'lit';
const content: CSSResultGroup;
export default content;
}

// Allow any CSS Custom Properties
declare module 'csstype' {
interface Properties {
[index: `--${string}`]: any;
}
}

0 comments on commit ff3658a

Please sign in to comment.