更改gradle配置

This commit is contained in:
godchao 2019-07-08 08:53:23 +08:00
parent 30f48fc99c
commit c3fd2828d8
7 changed files with 15 additions and 8 deletions

View File

@ -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'

View File

@ -1,3 +1,5 @@
apply plugin: 'org.springframework.boot'
dependencies {
compile project(":diboot-shiro-wx-mp")

View File

@ -1,3 +1,5 @@
apply plugin: 'org.springframework.boot'
dependencies {
compile project(":diboot-core")
compile project(":diboot-shiro")

View File

@ -5,6 +5,8 @@ plugins {
group 'com.diboot'
version '2.0-alpha'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
repositories {

View File

@ -1,3 +1,5 @@
apply plugin: 'org.springframework.boot'
dependencies {
compile project(":diboot-core")

View File

@ -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 = "权限")

View File

@ -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