Java 21 for LS side

This commit is contained in:
aboyko
2025-03-12 23:28:12 -04:00
parent f7bef78358
commit 417f31fc75
3 changed files with 7 additions and 5 deletions

View File

@@ -1,2 +1,3 @@
# headless services
The main parts of the tooling for Spring Boot apps are implemented as headless services, running in separate processes. Those services can be consumed in existing IDEs by using the Language Server Protocol from Visual Studio Code.

View File

@@ -9,7 +9,7 @@
<description>Repackaged org.json</description>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
</properties>
</project>

View File

@@ -127,6 +127,7 @@
<signing.skip>true</signing.skip>
<signing.alias>vmware</signing.alias>
<java.version>21</java.version>
</properties>
<dependencyManagement>
@@ -171,13 +172,13 @@
<build>
<plugins>
<!-- Set source 1.8 -->
<!-- Set source 21 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
<source>21</source>
<target>21</target>
</configuration>
</plugin>