feat: 新增 Console Module.

pull/161/head
chen.ma 3 years ago
parent 148a50b918
commit b2a1111035

33
console/.gitignore vendored

@ -0,0 +1,33 @@
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/

@ -0,0 +1,34 @@
<?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>
<parent>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>dynamic-threadpool-console</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>${project.artifactId}</description>
<dependencies>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-config</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

@ -1,4 +1,4 @@
package io.dynamic.threadpool.config.controller;
package io.dynamic.threadpool.console.controller;
import com.baomidou.mybatisplus.core.metadata.IPage;
import io.dynamic.threadpool.common.constant.Constants;

@ -1,4 +1,4 @@
package io.dynamic.threadpool.config.controller;
package io.dynamic.threadpool.console.controller;
import com.baomidou.mybatisplus.core.metadata.IPage;
import io.dynamic.threadpool.common.constant.Constants;

@ -1,4 +1,4 @@
package io.dynamic.threadpool.config.controller;
package io.dynamic.threadpool.console.controller;
import com.baomidou.mybatisplus.core.metadata.IPage;
import io.dynamic.threadpool.common.constant.Constants;

@ -36,6 +36,7 @@
<modules>
<module>alarm</module>
<module>common</module>
<module>console</module>
<module>server</module>
<module>config</module>
<module>registry</module>
@ -90,6 +91,12 @@
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-console</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-registry</artifactId>

@ -21,6 +21,11 @@
<artifactId>dynamic-threadpool-config</artifactId>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-console</artifactId>
</dependency>
<dependency>
<groupId>io.dynamic-threadpool</groupId>
<artifactId>dynamic-threadpool-registry</artifactId>

Loading…
Cancel
Save