Files
nl-Frebot/nl-web-app/pom.xml

100 lines
3.1 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.nl</groupId>
<artifactId>nl-robot</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>nl-web-app</artifactId>
<packaging>jar</packaging>
<description>主启动模块</description>
<dependencies>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-task</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-sys</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-setting</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-schedule</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-monitor</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-externalApi</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-map</artifactId>
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- dynamic-datasource -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
</dependency>
<!-- mysql -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-starter-redis</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>