【新增】新增对接模块
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?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>
|
||||
<parent>
|
||||
<groupId>com.jero.boot</groupId>
|
||||
<artifactId>laws-sinotruk</artifactId>
|
||||
<version>2.5.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>laws-modules-docking</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.jero.boot</groupId>
|
||||
<artifactId>laws-modules</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package com.jero.modules.docking.iam.controller;
|
||||
|
||||
/**
|
||||
* IAM同步的控制器,提供用户、组织、菜单和权限的同步
|
||||
*/
|
||||
public class SyncIamController {
|
||||
}
|
||||
@@ -58,6 +58,11 @@
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.jero.boot</groupId>
|
||||
<artifactId>laws-modules-docking</artifactId>
|
||||
<version>2.5.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>p6spy</groupId>
|
||||
<artifactId>p6spy</artifactId>
|
||||
|
||||
@@ -55,10 +55,11 @@
|
||||
<!-- 单体应用启动类 -->
|
||||
<module>laws-single-startup</module>
|
||||
<module>laws-modules</module>
|
||||
<!-- 需要微服务,请打开注释吗,并刷新maven
|
||||
<module>laws-starter</module>
|
||||
<module>jero-cloud-module</module>
|
||||
-->
|
||||
<module>laws-modules-docking</module>
|
||||
<!-- 需要微服务,请打开注释吗,并刷新maven
|
||||
<module>laws-starter</module>
|
||||
<module>jero-cloud-module</module>
|
||||
-->
|
||||
</modules>
|
||||
|
||||
<distributionManagement>
|
||||
|
||||
Reference in New Issue
Block a user