2021-04-15 23:14:52 +08:00
|
|
|
<?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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-parent</artifactId>
|
2024-12-04 14:30:09 +08:00
|
|
|
<version>5.10.0.springboot3-SNAPSHOT</version>
|
2021-04-15 23:14:52 +08:00
|
|
|
<relativePath>../../parent/pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>jeesite-module-cms</artifactId>
|
2024-04-23 15:37:32 +08:00
|
|
|
<packaging>jar</packaging>
|
2021-04-15 23:14:52 +08:00
|
|
|
|
|
|
|
|
<name>JeeSite Module CMS</name>
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
<inceptionYear>2013-Now</inceptionYear>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-module-core</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
2021-08-04 15:41:36 +08:00
|
|
|
|
2021-04-15 23:14:52 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>thinkgem</id>
|
|
|
|
|
<name>WangZhen</name>
|
|
|
|
|
<email>thinkgem at 163.com</email>
|
|
|
|
|
<roles>
|
|
|
|
|
<role>Project lead</role>
|
|
|
|
|
</roles>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
|
<name>JeeSite</name>
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
</organization>
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>aliyun-repos</id>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
|
|
</repositories>
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>aliyun-repos</id>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
</project>
|