2024-10-08 09:38:54 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
2025-03-04 10:42:17 +08:00
|
|
|
|
开源代码,仅供学习和交流研究使用,商用请联系三丙
|
|
|
|
|
|
微信:mohan_88888
|
|
|
|
|
|
抖音:程序员三丙
|
|
|
|
|
|
付费课程知识星球:https://t.zsxq.com/aKtXo
|
2024-10-08 09:38:54 +08:00
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
<layers xmlns="http://www.springframework.org/schema/boot/layers"
|
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/boot/layers
|
|
|
|
|
|
https://www.springframework.org/schema/boot/layers/layers-2.7.xsd">
|
|
|
|
|
|
<application>
|
|
|
|
|
|
<into layer="spring-boot-loader">
|
|
|
|
|
|
<include>org/springframework/boot/loader/**</include>
|
|
|
|
|
|
</into>
|
|
|
|
|
|
<into layer="application" />
|
|
|
|
|
|
</application>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<into layer="application">
|
|
|
|
|
|
<includeModuleDependencies />
|
|
|
|
|
|
</into>
|
|
|
|
|
|
<into layer="snapshot-dependencies">
|
|
|
|
|
|
<include>*:*:*SNAPSHOT</include>
|
|
|
|
|
|
</into>
|
|
|
|
|
|
<into layer="dependencies" />
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<layerOrder>
|
|
|
|
|
|
<layer>dependencies</layer>
|
|
|
|
|
|
<layer>spring-boot-loader</layer>
|
|
|
|
|
|
<layer>snapshot-dependencies</layer>
|
|
|
|
|
|
<layer>application</layer>
|
|
|
|
|
|
</layerOrder>
|
|
|
|
|
|
</layers>
|