You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
opsli-boot/opsli-modulars/pom.xml

52 lines
1.7 KiB

<?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>org.opsliframework.boot</groupId>
<artifactId>opsli-boot-parent</artifactId>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>opsli-modulars</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<!-- 模块 -->
<modules>
<module>opsli-modulars-test</module>
<module>opsli-modulars-system</module>
<module>opsli-modulars-generator</module>
</modules>
4 years ago
<!-- 规定子类所引用的版本***** -->
<dependencyManagement>
4 years ago
<!-- 需要使用着两个版本 来引入对应的模块和插件 -->
<!-- 基础版本 ${base.version} -->
4 years ago
<!-- 插件版本 ${plugins.version} -->
<!-- 模块版本 ${modulars.version}-->
<dependencies>
</dependencies>
</dependencyManagement>
<dependencies>
4 years ago
<!-- 需要使用着两个版本 来引入对应的模块和插件 -->
<!-- 基础版本 ${base.version} -->
4 years ago
<!-- 插件版本 ${plugins.version} -->
<!-- 模块版本 ${modulars.version}-->
<!-- 引入核心模块 -->
<dependency>
<groupId>org.opsliframework.boot</groupId>
<artifactId>opsli-core</artifactId>
<version>${base.version}</version>
</dependency>
</dependencies>
</project>