Browse Source

🏗️ 新增模板引擎模块

3.x
Yangkai.Shen 2 years ago
parent
commit
06f3b06a21
2 changed files with 22 additions and 0 deletions
  1. +21
    -0
      demo-template/pom.xml
  2. +1
    -0
      pom.xml

+ 21
- 0
demo-template/pom.xml View File

@@ -0,0 +1,21 @@
<?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>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>demo-template</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<java.version>17</java.version>
</properties>

</project>

+ 1
- 0
pom.xml View File

@@ -12,6 +12,7 @@
<module>common-tools</module>
<module>demo-base</module>
<module>demo-log</module>
<module>demo-template</module>
<module>demo-monitor</module>
<!-- <module>demo-logback</module>-->
<!-- <module>demo-log-aop</module>-->


Loading…
Cancel
Save