This commit is contained in:
thinkgem
2023-04-05 18:55:08 +08:00
parent 3086736d4e
commit f429bf1c83
17 changed files with 104 additions and 20 deletions

View File

@@ -233,6 +233,7 @@
<template>module_cloud/web/src/main/webapp/WEB-INF/startup.bat.xml</template>
<template>module_cloud/web/src/main/webapp/WEB-INF/startup.sh.xml</template>
<template>module_cloud/web/pom.xml</template>
<template>module_cloud/pom.xml</template>
</category>
</moduleTplCategory>
</config>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2013-Now http://jeesite.com All rights reserved.
No deletion without permission, or be held responsible to law. -->
<template>
<name>pom</name>
<filePath>${baseDir}/${moduleCode}</filePath>
<fileName>pom.xml</fileName>
<charset></charset>
<content><![CDATA[<?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>
<groupId>com.jeesite</groupId>
<artifactId>jeesite-cloud-module-${moduleCode}</artifactId>
<version>${jeesiteVersion}-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JeeSite Cloud Module ${moduleName}</name>
<url>http://jeesite.com</url>
<inceptionYear>2013-Now</inceptionYear>
<modules>
<module>${moduleCode}</module>
<module>${moduleCode}-client</module>
</modules>
<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>
</project>
]]>
</content>
</template>

View File

@@ -18,10 +18,10 @@
<relativePath>../../../parent/web/pom.xml</relativePath>
</parent>
<artifactId>jeesite-cloud-module-${moduleCode}</artifactId>
<artifactId>jeesite-cloud-module-${moduleCode}-web</artifactId>
<packaging>war</packaging>
<name>JeeSite Cloud Module ${moduleName}</name>
<name>JeeSite Cloud Module ${moduleName} Web</name>
<url>http://jeesite.com</url>
<inceptionYear>2013-Now</inceptionYear>