-
Notifications
You must be signed in to change notification settings - Fork 64
Migration to Java 25 #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
1572c0e
cb0783e
b63e27e
252f526
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,10 @@ | ||
| # rule-node-examples | ||
| Examples of custom Rule Nodes for ThingsBoard contribution guide | ||
|
|
||
| Requires JDK 25+ | ||
|
|
||
| Unit tests examples for custom rule nodes added as well | ||
|
|
||
| To build the project run `mvn clean install` | ||
|
|
||
| To build a custom Docker image run `DOCKER_BUILDKIT=0 docker build . -t your_repo/tb-node:4.3.0.1-custom-1` | ||
| To build a custom Docker image run `DOCKER_BUILDKIT=0 docker build . -t your_repo/tb-node:4.4.0-SNAPSHOT-custom-1` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,8 +32,10 @@ | |
| <properties> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <main.dir>${basedir}</main.dir> | ||
| <thingsboard.version>4.3.0.1</thingsboard.version> | ||
| <lombok.version>1.18.38</lombok.version> | ||
| <thingsboard.version>4.4.0-SNAPSHOT</thingsboard.version> | ||
| <lombok.version>1.18.40</lombok.version> | ||
| <maven.compiler.source>25</maven.compiler.source> | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Low-confidence observation: |
||
| <maven.compiler.target>25</maven.compiler.target> | ||
| <guava.version>33.1.0-jre</guava.version> | ||
| <spring-boot.version>3.4.10</spring-boot.version> | ||
| <commons-io.version>2.16.1</commons-io.version> | ||
|
|
@@ -179,11 +181,12 @@ | |
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.11.0</version> | ||
ViacheslavKlimov marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <configuration> | ||
| <release>17</release> | ||
| <release>25</release> | ||
| <compilerArgs> | ||
| <arg>-Xlint:deprecation</arg> | ||
| <arg>-Xlint:removal</arg> | ||
| <arg>-Xlint:unchecked</arg> | ||
| <arg>-parameters</arg> | ||
ViacheslavKlimov marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| </compilerArgs> | ||
| <annotationProcessorPaths> | ||
| <path> | ||
|
|
@@ -198,6 +201,12 @@ | |
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-surefire-plugin</artifactId> | ||
| <version>${surefire.version}</version> | ||
| <configuration> | ||
| <argLine> | ||
| -XX:+EnableDynamicAgentLoading | ||
| --add-opens=java.base/java.lang.reflect=ALL-UNNAMED | ||
| </argLine> | ||
ViacheslavKlimov marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </pluginManagement> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.