2020-12-11 10:18:48 +00:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
<parent>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>roses-kernel</artifactId>
|
2024-08-03 07:45:06 +00:00
|
|
|
<version>8.3.0</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>kernel-s-demo</artifactId>
|
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>demo-api</module>
|
|
|
|
<module>demo-business</module>
|
|
|
|
<module>demo-spring-boot-starter</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- 开发规则 -->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>kernel-a-rule</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--web-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|