dataease-dm/pom.xml

36 lines
1021 B
XML
Raw Normal View History

2021-02-18 17:30:29 +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-06-17 14:38:20 +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>
2021-02-20 10:07:25 +08:00
<artifactId>dataease-server</artifactId>
2022-11-07 10:43:04 +08:00
<version>1.17.0</version>
2021-02-18 17:30:29 +08:00
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.3</version>
2021-03-10 18:13:27 +08:00
<relativePath/>
2021-02-18 17:30:29 +08:00
</parent>
2021-02-20 10:07:25 +08:00
<name>dataease</name>
2022-06-17 14:38:20 +08:00
2021-02-20 10:07:25 +08:00
<modules>
2021-03-10 18:13:27 +08:00
<module>frontend</module>
2022-01-03 21:13:45 +08:00
<module>mobile</module>
2021-03-11 11:41:29 +08:00
<module>backend</module>
2021-02-20 10:07:25 +08:00
</modules>
2021-02-18 17:30:29 +08:00
2021-10-14 17:17:43 +08:00
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
2021-02-19 16:34:02 +08:00
</project>