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.
68 lines
2.2 KiB
68 lines
2.2 KiB
5 months ago
|
<?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>com.hfkj</groupId>
|
||
|
<artifactId>hai-oil-parent</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.0.5.RELEASE</version>
|
||
|
<relativePath/>
|
||
|
</parent>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<springfox-version>2.6.1</springfox-version>
|
||
|
<joda-time-version>2.9.9</joda-time-version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>commons-net</groupId>
|
||
|
<artifactId>commons-net</artifactId>
|
||
|
<version>3.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.coobird</groupId>
|
||
|
<artifactId>thumbnailator</artifactId>
|
||
|
<version>0.4.8</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.12</version>
|
||
|
<!-- 表示开发的时候引入,发布的时候不会加载此包 -->
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.binarywang</groupId>
|
||
|
<artifactId>weixin-java-mp</artifactId>
|
||
|
<version>3.8.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<defaultGoal>compile</defaultGoal>
|
||
|
</build>
|
||
|
|
||
|
<modules>
|
||
|
<module>service</module>
|
||
|
<module>cweb</module>
|
||
|
<module>bweb</module>
|
||
|
<module>schedule</module>
|
||
|
</modules>
|
||
|
|
||
|
|
||
|
</project>
|