| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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>com.storlead.boot</groupId>
- <artifactId>storlead-system</artifactId>
- <version>1.0</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>storlead-system-biz</artifactId>
- <packaging>jar</packaging>
- <name>storlead-system-biz</name>
- <description>系统域实现:Mapper、Service 实现、AOP、配置与工具。</description>
- <dependencies>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-system-spi</artifactId>
- </dependency>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-user-spi</artifactId>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-auth</artifactId>
- </dependency>
- <dependency>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-web</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>storlead-system-biz</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.0</version>
- <configuration>
- <source>11</source>
- <target>11</target>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- </project>
|