From 69b8a3cfec67b1a54698b4144fa7952edcf1022a Mon Sep 17 00:00:00 2001 From: Michelle.Chung <1242874891@qq.com> Date: 星期日, 05 二月 2023 09:02:18 +0800 Subject: [PATCH] fix vm 修正 controller.java.vm 代码生成模板包路径错误 ; --- ruoyi-extend/ruoyi-monitor-admin/pom.xml | 29 ++++++++--------------------- 1 files changed, 8 insertions(+), 21 deletions(-) diff --git a/ruoyi-extend/ruoyi-monitor-admin/pom.xml b/ruoyi-extend/ruoyi-monitor-admin/pom.xml index fc321bd..1dd3f51 100644 --- a/ruoyi-extend/ruoyi-monitor-admin/pom.xml +++ b/ruoyi-extend/ruoyi-monitor-admin/pom.xml @@ -5,7 +5,8 @@ <parent> <artifactId>ruoyi-extend</artifactId> <groupId>com.ruoyi</groupId> - <version>3.3.0</version> + <version>${revision}</version> + <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> @@ -34,6 +35,11 @@ <artifactId>spring-boot-admin-starter-client</artifactId> </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> + </dependencies> <build> @@ -44,7 +50,7 @@ <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> <configuration> - <fork>true</fork> <!-- 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 --> +<!-- <fork>true</fork> <!– 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 –>--> </configuration> <executions> <execution> @@ -53,25 +59,6 @@ </goals> </execution> </executions> - </plugin> - <plugin> - <groupId>com.spotify</groupId> - <artifactId>docker-maven-plugin</artifactId> - <version>${docker.plugin.version}</version> - <configuration> - <imageName>${docker.namespace}/${project.artifactId}:${project.version}</imageName> - <dockerDirectory>${project.basedir}</dockerDirectory> - <dockerHost>${docker.registry.host}</dockerHost> - <registryUrl>${docker.registry.url}</registryUrl> - <serverId>${docker.registry.url}</serverId> - <resources> - <resource> - <targetPath>/</targetPath> - <directory>${project.build.directory}</directory> - <include>${project.build.finalName}.jar</include> - </resource> - </resources> - </configuration> </plugin> </plugins> </build> -- Gitblit v1.9.3