| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?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">
- <parent>
- <artifactId>zd-modules</artifactId>
- <groupId>com.zd</groupId>
- <version>3.1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.zd.base</groupId>
- <artifactId>zd-base</artifactId>
- <packaging>jar</packaging>
- <description>基础服务</description>
- <dependencies>
- <!-- SpringCloud Alibaba Nacos -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </dependency>
- <!-- SpringCloud Alibaba Sentinel -->
- <!--<dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
- </dependency>-->
- <!-- Mysql Connector -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd.swagger</groupId>
- <artifactId>common-swagger</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd.core</groupId>
- <artifactId>common-core</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>poi-ooxml</artifactId>
- <groupId>org.apache.poi</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.zd.base</groupId>
- <artifactId>zd-base-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd.laboratory</groupId>
- <artifactId>zd-laboratory-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd.exam</groupId>
- <artifactId>zd-exam-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd.chemical</groupId>
- <artifactId>zd-chemical-api</artifactId>
- </dependency>
- <dependency>
- <groupId>connect</groupId>
- <artifactId>connect-lib</artifactId>
- <version>1.0.0</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/connect-lib.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>reader</groupId>
- <artifactId>reader-lib</artifactId>
- <version>1.0.0</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/reader-lib.jar</systemPath>
- </dependency>
- <!-- Quartz -->
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <exclusions>
- <exclusion>
- <groupId>com.mchange</groupId>
- <artifactId>c3p0</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- FastDFS -->
- <dependency>
- <groupId>com.github.tobato</groupId>
- <artifactId>fastdfs-client</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>slf4j-api</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- </exclusion>
- <exclusion>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Minio -->
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>${minio.version}</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|