Files
wms-admin/wms-webapi/.flattened-pom.xml

139 lines
4.5 KiB
XML
Raw Permalink Normal View History

2026-02-27 10:16:46 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
2026-02-27 10:50:07 +08:00
<groupId>top.wms</groupId>
<artifactId>wms-admin</artifactId>
2026-02-27 10:16:46 +08:00
<version>3.6.0-SNAPSHOT</version>
</parent>
2026-02-27 10:50:07 +08:00
<artifactId>wms-webapi</artifactId>
2026-02-27 10:16:46 +08:00
<version>3.6.0-SNAPSHOT</version>
<description>API 及打包部署模块</description>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<properties>
<config-path>config/</config-path>
<lib-path>lib/</lib-path>
<bin-path>bin/</bin-path>
2026-02-27 10:50:07 +08:00
<main-class>top.wms.admin.WmsAdminApplication</main-class>
2026-02-27 10:16:46 +08:00
</properties>
<dependencies>
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-starter-log-interceptor</artifactId>
</dependency>
<dependency>
2026-02-27 10:50:07 +08:00
<groupId>top.wms</groupId>
<artifactId>wms-module-system</artifactId>
2026-02-27 10:16:46 +08:00
</dependency>
<dependency>
2026-02-27 10:50:07 +08:00
<groupId>top.wms</groupId>
<artifactId>wms-plugin-schedule</artifactId>
2026-02-27 10:16:46 +08:00
</dependency>
<dependency>
2026-02-27 10:50:07 +08:00
<groupId>top.wms</groupId>
<artifactId>wms-plugin-generator</artifactId>
2026-02-27 10:16:46 +08:00
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2026-02-27 10:50:07 +08:00
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.12.780</version>
</dependency>
2026-03-05 18:13:39 +08:00
<dependency>
<groupId>com.fazecast</groupId>
<artifactId>jSerialComm</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-api</artifactId>
<version>2.1.0</version>
</dependency>
2026-02-27 10:16:46 +08:00
</dependencies>
<build>
<finalName>${project.parent.name}</finalName>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>${config-path}</exclude>
<exclude>db/</exclude>
<exclude>templates/</exclude>
<exclude>logback-spring.xml</exclude>
</excludes>
<archive>
<manifest>
<mainClass>${main-class}</mainClass>
<classpathPrefix>../${lib-path}</classpathPrefix>
<addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions>
</manifest>
<manifestEntries>
<Class-Path>../${config-path}</Class-Path>
</manifestEntries>
</archive>
<outputDirectory>${project.build.directory}/app/${bin-path}</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/app/${lib-path}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>src/main/resources/${config-path}</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>db/</include>
<include>templates/</include>
<include>logback-spring.xml</include>
</includes>
</resource>
</resources>
<outputDirectory>${project.build.directory}/app/${config-path}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>