feature: 引入 GitHub 项目变更监控 Module.

pull/161/head
chen.ma 3 years ago
parent c9dd4da13a
commit cce1719040

@ -35,8 +35,30 @@
<dependency>
<groupId>com.github.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-spring-boot-starter</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.github.dynamic-threadpool</groupId>
<artifactId>open-change-tool</artifactId>
</dependency>
</dependencies>
<build>
<finalName>hippo-example</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>

@ -36,6 +36,7 @@
<commons-lang3.version>3.12.0</commons-lang3.version>
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version>
<transmittable-thread-local.version>2.12.1</transmittable-thread-local.version>
<forest.version>1.5.11</forest.version>
<dingtalk-sdk.version>1.0.1</dingtalk-sdk.version>
@ -124,6 +125,12 @@
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.github.dynamic-threadpool</groupId>
<artifactId>open-change-tool</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
@ -159,6 +166,12 @@
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
</dependency>
<dependency>
<groupId>com.dtflys.forest</groupId>
<artifactId>forest-spring-boot-starter</artifactId>
<version>${forest.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
@ -266,6 +279,11 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

Loading…
Cancel
Save