You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
5.7 KiB
XML

3 years ago
<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>
<groupId>com.ibeetl</groupId>
<artifactId>admin</artifactId>
<version>1.3.1</version>
<packaging>pom</packaging>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2 years ago
<spring.boot.version>2.5.2</spring.boot.version>
2 years ago
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<poi.version>4.1.2</poi.version>
2 years ago
<pro.version>1.3.1</pro.version>
3 years ago
</properties>
<modules>
<module>admin-core</module>
<module>admin-console</module>
<module>web</module>
<module>admin-framework</module>
3 years ago
</modules>
2 years ago
2 years ago
<dependencyManagement>
<dependencies>
2 years ago
<!-- 统一依赖管理 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
2 years ago
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>admin-core</artifactId>
2 years ago
<version>${pro.version}</version>
2 years ago
</dependency>
2 years ago
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>admin-convert-pdf</artifactId>
<version>${pro.version}</version>
</dependency> <!-- admin-console 包含了系统管理管理的所有功能,子系统可以不使用这部分 -->
2 years ago
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>admin-console</artifactId>
2 years ago
<version>${pro.version}</version>
2 years ago
</dependency>
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>admin-test</artifactId>
2 years ago
<version>${pro.version}</version>
2 years ago
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
2 years ago
<version>${spring.boot.version}</version>
2 years ago
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
2 years ago
<version>${spring.boot.version}</version>
2 years ago
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
3 years ago
2 years ago
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.56</version>
</dependency>
3 years ago
2 years ago
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1.1-jre</version>
<scope>compile</scope>
</dependency>
2 years ago
</dependencies>
</dependencyManagement>
3 years ago
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2 years ago
<version>${maven-compiler-plugin.version}</version>
3 years ago
<configuration>
<source>1.8</source>
<target>1.8</target>
<parameters>true</parameters>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
2 years ago
<!-- 在pom.xml文件中的 build->plugins标签下添加-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
3 years ago
</plugins>
</build>
</project>