2023-06-06 16:21:55 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-02-20 10:07:25 +08:00
|
|
|
<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">
|
2022-12-06 17:21:22 +08:00
|
|
|
|
2021-02-18 17:30:29 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-02-19 16:34:02 +08:00
|
|
|
<groupId>io.dataease</groupId>
|
2023-08-24 17:34:35 +08:00
|
|
|
<artifactId>dataease</artifactId>
|
2023-03-07 11:31:29 +08:00
|
|
|
<version>${dataease.version}</version>
|
2021-02-18 17:30:29 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2023-03-07 11:31:29 +08:00
|
|
|
<properties>
|
2023-08-08 11:07:35 +08:00
|
|
|
<dataease.version>1.18.10</dataease.version>
|
2023-03-07 11:31:29 +08:00
|
|
|
</properties>
|
|
|
|
|
2021-02-20 10:07:25 +08:00
|
|
|
<name>dataease</name>
|
2022-12-06 17:21:22 +08:00
|
|
|
|
2021-02-20 10:07:25 +08:00
|
|
|
<modules>
|
2023-08-24 17:34:35 +08:00
|
|
|
<module>sdk</module>
|
|
|
|
<module>core</module>
|
|
|
|
<module>extensions</module>
|
2021-02-20 10:07:25 +08:00
|
|
|
</modules>
|
2023-03-07 12:51:50 +08:00
|
|
|
|
2023-08-24 17:34:35 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.4.3</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
2023-08-23 17:52:39 +08:00
|
|
|
|
2023-08-24 17:21:24 +08:00
|
|
|
<build>
|
2023-08-24 17:34:35 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
<version>1.3.0</version>
|
|
|
|
<configuration>
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>flatten</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>flatten</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
<phase>clean</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
2023-08-23 17:52:39 +08:00
|
|
|
</build>
|
2023-03-07 12:51:50 +08:00
|
|
|
|
2023-08-24 17:34:35 +08:00
|
|
|
|
|
|
|
|
2021-02-19 16:34:02 +08:00
|
|
|
</project>
|