66 lines
1.9 KiB
XML
66 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.5.3</version>
|
||
<relativePath/> <!-- lookup parent from repository -->
|
||
</parent>
|
||
<groupId>cn.nightsoil</groupId>
|
||
<artifactId>live-audio</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<name>live-audio</name>
|
||
<description>live-audio</description>
|
||
<properties>
|
||
<java.version>11</java.version>
|
||
<spring-boot.version>2.5.3</spring-boot.version>
|
||
<maven.compiler.target>11</maven.compiler.target>
|
||
<maven.compiler.source>11</maven.compiler.source>
|
||
</properties>
|
||
<dependencies>
|
||
<!-- Spring Boot 核心依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Spring Boot Web Starter(如果需要) -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<!-- JavaFX 相关依赖 -->
|
||
<dependency>
|
||
<groupId>org.openjfx</groupId>
|
||
<artifactId>javafx-controls</artifactId>
|
||
<version>17.0.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.openjfx</groupId>
|
||
<artifactId>javafx-fxml</artifactId>
|
||
<version>17.0.6</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.openjfx</groupId>
|
||
<artifactId>javafx-maven-plugin</artifactId>
|
||
<version>0.0.7</version>
|
||
<configuration>
|
||
<mainClass>cn.nightsoil.liveaudio.LiveAudioApplication</mainClass>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|