当前位置:网站首页>若依打包如何分离jar包和资源文件?

若依打包如何分离jar包和资源文件?

2022-06-26 15:49:00 Roc-xb

有时候需要分离libresouce,可以修改ruoyi-admin 下的pom.xml文件

<?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>
        <artifactId>ruoyi</artifactId>
        <groupId>com.ruoyi</groupId>
        <version>4.4.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
	<packaging>jar</packaging>
    <artifactId>ruoyi-admin</artifactId>
	
	<description>
	    web服务入口
	</description>

    <dependencies>
    
        <!-- SpringBoot集成thymeleaf模板 -->
        <dependency>
            <gro
原网站

版权声明
本文为[Roc-xb]所创,转载请带上原文链接,感谢
https://yang-roc.blog.csdn.net/article/details/125431971