Files
nl-Frebot/nl-web-app/pom.xml
2025-11-20 13:30:33 +08:00

69 lines
2.2 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-media</artifactId>
</dependency>
<dependency>
<groupId>org.nl</groupId>
<artifactId>nl-business-map</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>