|
@@ -0,0 +1,130 @@
|
|
|
+<?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>boman</artifactId>
|
|
|
+ <groupId>com.boman</groupId>
|
|
|
+ <version>2.5.0-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <artifactId>jiaoyuju-admin</artifactId>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jeecgframework.jimureport</groupId>
|
|
|
+ <artifactId>jimureport-spring-boot-starter</artifactId>
|
|
|
+ <version>1.3.75</version>
|
|
|
+ </dependency>
|
|
|
+<!--宋体字体-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jeecgframework.jimureport</groupId>
|
|
|
+ <artifactId>jimureport-font</artifactId>
|
|
|
+ <version>1.1.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringCloud Ailibaba Nacos -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringCloud Ailibaba Nacos Config -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringCloud Ailibaba Sentinel -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot Actuator -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Swagger UI -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
+ <version>${swagger.fox.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Mysql Connector -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- RuoYi Common DataSource -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.boman</groupId>
|
|
|
+ <artifactId>boman-common-datasource</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- RuoYi Common DataScope-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.boman</groupId>
|
|
|
+ <artifactId>boman-common-datascope</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- RuoYi Common Log-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.boman</groupId>
|
|
|
+ <artifactId>boman-common-log</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- RuoYi Common Swagger-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.boman</groupId>
|
|
|
+ <artifactId>boman-common-swagger</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-beanutils</groupId>
|
|
|
+ <artifactId>commons-beanutils</artifactId>
|
|
|
+ <version>1.9.4</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.18.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.boman</groupId>
|
|
|
+ <artifactId>boman-visual</artifactId>
|
|
|
+ <version>2.5.0-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <finalName>${artifactId}</finalName>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|