mirror of https://github.com/ZhongFuCheng3y/austin
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.
120 lines
3.7 KiB
120 lines
3.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>austin-web</module>
|
|
<module>austin-service-api</module>
|
|
<module>austin-service-api-impl</module>
|
|
<module>austin-common</module>
|
|
<module>austin-support</module>
|
|
<module>austin-handler</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.5.6</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>com.java3y.austin</groupId>
|
|
<artifactId>austin</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>austin</name>
|
|
<description>austin-message</description>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!--mysql驱动包-->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.35</version>
|
|
<exclusions></exclusions>
|
|
</dependency>
|
|
|
|
<!--hutool工具包-->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.7.15</version>
|
|
</dependency>
|
|
|
|
<!--guava工具包-->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>31.0.1-jre</version>
|
|
</dependency>
|
|
|
|
<!--http库-->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.9.2</version>
|
|
</dependency>
|
|
|
|
<!--fastjson包-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.78</version>
|
|
</dependency>
|
|
|
|
<!--腾讯sdk(目前用在短信上)-->
|
|
<dependency>
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
|
<version>3.1.390</version>
|
|
</dependency>
|
|
|
|
<!--apollo-->
|
|
<dependency>
|
|
<groupId>com.ctrip.framework.apollo</groupId>
|
|
<artifactId>apollo-client-config-data</artifactId>
|
|
<version>1.9.1</version>
|
|
</dependency>
|
|
|
|
<!--注解打印日志-->
|
|
<dependency>
|
|
<groupId>cn.monitor4all</groupId>
|
|
<artifactId>log-record-starter</artifactId>
|
|
<version>1.0.4</version>
|
|
</dependency>
|
|
|
|
<!--邮件发送-->
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
|
|
<!--swagger-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!--graylog-->
|
|
<dependency>
|
|
<groupId>de.siegmar</groupId>
|
|
<artifactId>logback-gelf</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
</project>
|