|
|
@@ -16,7 +16,6 @@
|
|
|
|
|
|
<properties>
|
|
|
<java.version>21</java.version>
|
|
|
- <maven.compiler.release>21</maven.compiler.release>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<spring-cloud.version>2025.1.0</spring-cloud.version>
|
|
|
</properties>
|
|
|
@@ -167,38 +166,50 @@
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
- <build>
|
|
|
- <finalName>uv_saic_gui</finalName>
|
|
|
- <resources>
|
|
|
- <resource>
|
|
|
- <directory>src/main/resources</directory>
|
|
|
- <filtering>true</filtering>
|
|
|
- <excludes>
|
|
|
- <exclude>static/css/webfonts/**</exclude>
|
|
|
- </excludes>
|
|
|
- </resource>
|
|
|
- </resources>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <parameters>true</parameters>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.graalvm.buildtools</groupId>
|
|
|
- <artifactId>native-maven-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <imageName>uv_saic_gui</imageName>
|
|
|
- <buildArgs>
|
|
|
- <buildArg>--no-fallback</buildArg>
|
|
|
- </buildArgs>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
+ <build>
|
|
|
+ <finalName>uv_saic_gui</finalName>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <parameters>true</parameters>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.graalvm.buildtools</groupId>
|
|
|
+ <artifactId>native-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <imageName>uv-saic-core</imageName>
|
|
|
+ <buildArgs>
|
|
|
+ <buildArg>--no-fallback</buildArg>
|
|
|
+ </buildArgs>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <!--
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.jacoco</groupId>
|
|
|
+ <artifactId>jacoco-maven-plugin</artifactId>
|
|
|
+ <version>0.8.12</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>jacoco-initialize</id>
|
|
|
+ <goals>
|
|
|
+ <goal>prepare-agent</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ <execution>
|
|
|
+ <id>jacoco-site</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>report</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ -->
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
|
|
|
|
|
|
</project>
|