更改gradle配置
This commit is contained in:
parent
30f48fc99c
commit
c3fd2828d8
|
@ -20,7 +20,6 @@ allprojects {
|
|||
subprojects {
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'org.springframework.boot'
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
apply plugin: 'java-library'
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
dependencies {
|
||||
|
||||
compile project(":diboot-shiro-wx-mp")
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
dependencies {
|
||||
compile project(":diboot-core")
|
||||
compile project(":diboot-shiro")
|
||||
|
|
|
@ -5,6 +5,8 @@ plugins {
|
|||
group 'com.diboot'
|
||||
version '2.0-alpha'
|
||||
|
||||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
|
||||
repositories {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
dependencies {
|
||||
compile project(":diboot-core")
|
||||
|
||||
|
|
|
@ -24,10 +24,10 @@ import javax.servlet.http.HttpServletRequest;
|
|||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Organization相关Controller
|
||||
* @author Mazhicheng
|
||||
* @version 2018/12/23
|
||||
* Copyright © www.dibo.ltd
|
||||
* 权限资源相关Controller
|
||||
* @author Wangyongliang
|
||||
* @version v2.0
|
||||
* @date 2019/6/20
|
||||
*/
|
||||
@RestController
|
||||
@AuthorizationPrefix(prefix = "permission", code = "permission", name = "权限")
|
||||
|
|
|
@ -19,9 +19,9 @@ import java.util.Objects;
|
|||
|
||||
/**
|
||||
* 许可授权相关Service
|
||||
* @author Mazhicheng
|
||||
* @version 2018/12/23
|
||||
* Copyright © www.dibo.ltd
|
||||
* @author Wuyue
|
||||
* @version v2.0
|
||||
* @date 2019/6/20
|
||||
*/
|
||||
@Service
|
||||
@Slf4j
|
||||
|
|
Loading…
Reference in New Issue