12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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>
- <groupId>org.dromara</groupId>
- <artifactId>ruoyi-dataManagement</artifactId>
- <version>5.3.0</version>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.36</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-annotation</artifactId>
- <version>3.5.10</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.dromara</groupId>
- <artifactId>ruoyi-common-tenant</artifactId>
- <version>${version}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.dromara</groupId>
- <artifactId>ruoyi-common-mybatis</artifactId>
- <version>5.3.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.dromara</groupId>
- <artifactId>ruoyi-common-web</artifactId>
- <version>5.3.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|