| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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>kd-service</artifactId>
- <groupId>org.sky</groupId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>kd-scientific</artifactId>
- <name>${project.artifactId}</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-core-boot</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-starter-swagger</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-scientific-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.sky</groupId>
- <artifactId>kd-system-api</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.7.16</version> <!-- 请检查最新版本 -->
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <configuration>
- <skip>${docker.fabric.skip}</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>16</source>
- <target>16</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|