wms/nflg-wms-auth/pom.xml

113 lines
4.3 KiB
XML
Raw Normal View History

2025-06-03 17:18:11 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.nflg</groupId>
<artifactId>nflg-wms</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2025-06-06 14:58:56 +08:00
<artifactId>nflg-wms-auth</artifactId>
2025-06-03 17:18:11 +08:00
<version>1.0.0-SNAPSHOT</version>
2025-06-06 14:58:56 +08:00
<name>服务-登录认证</name>
<description></description>
2025-06-03 17:18:11 +08:00
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.nflg</groupId>
<artifactId>nflg-wms-common</artifactId>
</dependency>
<dependency>
<groupId>com.nflg</groupId>
<artifactId>nflg-wms-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
2025-06-27 18:04:24 +08:00
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
</dependency>
2025-07-31 18:03:22 +08:00
<dependency>
<groupId>com.github.loki4j</groupId>
<artifactId>loki-logback-appender</artifactId>
</dependency>
2025-06-03 17:18:11 +08:00
</dependencies>
<build>
<plugins>
<plugin>
2025-06-26 18:13:37 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2025-06-03 17:18:11 +08:00
<configuration>
2025-06-26 18:13:37 +08:00
<skip>true</skip>
2025-06-03 17:18:11 +08:00
</configuration>
</plugin>
<plugin>
2025-06-26 18:13:37 +08:00
<groupId>org.apache.maven.plugins</groupId>
<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}/lib</outputDirectory>
<excludeGroupIds>${project.groupId}</excludeGroupIds>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
2025-06-03 17:18:11 +08:00
<configuration>
2025-06-26 18:13:37 +08:00
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.nflg.wms.auth.AuthApplication</mainClass>
</manifest>
</archive>
2025-06-03 17:18:11 +08:00
</configuration>
</plugin>
2025-06-26 18:13:37 +08:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>${project.groupId}:*</include>
</includes>
</artifactSet>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
2025-06-03 17:18:11 +08:00
</plugins>
</build>
</project>