<?xml version="1.0" encoding="UTF-8"?>
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
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>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-parent</artifactId>
|
<version>1.1.3</version>
|
<relativePath>../cloud-server-parent/pom.xml</relativePath>
|
</parent>
|
<artifactId>mb-cloud-course</artifactId>
|
<packaging>jar</packaging>
|
<version>${parent.version}</version>
|
<name>课程</name>
|
<description>课程</description>
|
<dependencies>
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper</artifactId>
|
<version>5.2.1</version>
|
</dependency>
|
<!--日志处理-->
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-log</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-data</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-sentinel</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.flywaydb</groupId>
|
<artifactId>flyway-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.jdom</groupId>
|
<artifactId>jdom</artifactId>
|
<version>1.1.3</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.2</version>
|
</dependency>
|
|
|
<!-- mybatis generertor-->
|
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity</artifactId>
|
<version>1.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
<version>2.3.30</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
<version>4.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.gavaghan</groupId>
|
<artifactId>geodesy</artifactId>
|
<version>1.1.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.shardingsphere</groupId>
|
<artifactId>shardingsphere-jdbc-core</artifactId>
|
<version>5.2.0</version>
|
</dependency>
|
<dependency>
|
<groupId>dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>1.6.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alipay.sdk</groupId>
|
<artifactId>alipay-sdk-java</artifactId>
|
<version>4.38.10.ALL</version>
|
</dependency>
|
<dependency>
|
<groupId>com.huaweicloud</groupId>
|
<artifactId>esdk-obs-java-bundle</artifactId>
|
<version>3.23.5</version>
|
<scope>compile</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
<version>4.4.3</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
<version>3.8.0</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>2.3.4.RELEASE</version>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
|
|
</plugins>
|
</build>
|
<repositories>
|
<repository>
|
<id>magic-beans-releases</id>
|
<url>http://maven.magic-beans.cn/nexus/content/repositories/releases/</url>
|
</repository>
|
<repository>
|
<id>aliyun</id>
|
<name>aliyun</name>
|
<url>https://maven.aliyun.com/repository/public</url>
|
</repository>
|
<repository>
|
<id>magic-beans-thirdparty</id>
|
<url>http://maven.magic-beans.cn/nexus/content/repositories/thirdparty/</url>
|
</repository>
|
|
</repositories>
|
</project>
|