2023-07-05 09:07:12 +08:00
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>jeecg-module-spectrum-analysis</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- 引入jeecg-boot-starter-cloud依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-starter-cloud</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-base-core</artifactId>
|
|
|
|
</dependency>
|
2023-08-10 08:47:39 +08:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.ejml/ejml-simple -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ejml</groupId>
|
|
|
|
<artifactId>ejml-simple</artifactId>
|
|
|
|
<version>0.39</version>
|
|
|
|
</dependency>
|
2023-08-21 16:46:29 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>23.0</version>
|
|
|
|
</dependency>
|
2023-09-01 15:25:53 +08:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.34.0</version>
|
|
|
|
</dependency>
|
2023-09-18 19:58:08 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
2023-07-05 09:07:12 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|