fix
This commit is contained in:
13
build.gradle
13
build.gradle
@@ -6,16 +6,7 @@ defaultTasks "clean", "build"
|
|||||||
|
|
||||||
//Version define
|
//Version define
|
||||||
ext {
|
ext {
|
||||||
jackson2Version = "2.9.8"
|
|
||||||
log4jVersion = "2.12.0"
|
|
||||||
springVersion = "5.2.2.RELEASE"
|
|
||||||
springBootVersion = "2.2.1.RELEASE"
|
|
||||||
springSecurityVersion= "5.2.1.RELEASE"
|
|
||||||
hibernateVersion = "6.0.17.Final"
|
|
||||||
slf4jVersion = "1.7.26"
|
|
||||||
jacksonVersion = "2.9.9"
|
|
||||||
bouncycastleVersion = "1.60"
|
|
||||||
httpcomponentsVersion= "4.5.6"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations.all {
|
configurations.all {
|
||||||
@@ -301,7 +292,7 @@ subprojects {
|
|||||||
manifest {
|
manifest {
|
||||||
attributes( "Implementation-Title": project.name,
|
attributes( "Implementation-Title": project.name,
|
||||||
"Implementation-Vendor": project.vendor,
|
"Implementation-Vendor": project.vendor,
|
||||||
"Created-By": project.group,
|
"Created-By": project.author,
|
||||||
"Implementation-Date": currentTime,
|
"Implementation-Date": currentTime,
|
||||||
"Implementation-Version": project.version)
|
"Implementation-Version": project.version)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,16 @@
|
|||||||
group =org.maxkey
|
group =org.maxkey
|
||||||
version =1.0.0.RELEASE
|
version =1.0.0.RELEASE
|
||||||
vendor =https://github.com/shimingxy/MaxKey
|
vendor =https://github.com/shimingxy/MaxKey
|
||||||
|
author =shimingxy
|
||||||
|
|
||||||
|
#Version For use jar
|
||||||
|
jackson2Version =2.9.8
|
||||||
|
log4jVersion =2.12.0
|
||||||
|
springVersion =5.2.2.RELEASE
|
||||||
|
springBootVersion =2.2.1.RELEASE
|
||||||
|
springSecurityVersion =5.2.1.RELEASE
|
||||||
|
hibernateVersion =6.0.17.Final
|
||||||
|
slf4jVersion =1.7.26
|
||||||
|
jacksonVersion =2.9.9
|
||||||
|
bouncycastleVersion =1.60
|
||||||
|
httpcomponentsVersion =4.5.6
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
@@ -28,36 +28,20 @@
|
|||||||
<!-- for index -->
|
<!-- for index -->
|
||||||
<mvc:mapping path="/index/*" />
|
<mvc:mapping path="/index/*" />
|
||||||
<!-- for System -->
|
<!-- for System -->
|
||||||
<mvc:mapping path="/menus/*" />
|
|
||||||
<mvc:mapping path="/roles/*" />
|
|
||||||
<mvc:mapping path="/logs/*" />
|
<mvc:mapping path="/logs/*" />
|
||||||
<mvc:mapping path="/userinfo/*" />
|
<mvc:mapping path="/userinfo/*" />
|
||||||
<mvc:mapping path="/relyingparty/*" />
|
<mvc:mapping path="/relyingparty/*" />
|
||||||
<mvc:mapping path="/sysconfig/*" />
|
<mvc:mapping path="/sysconfig/*" />
|
||||||
|
|
||||||
<mvc:mapping path="/roles/*"/>
|
|
||||||
<mvc:mapping path="/applications/*"/>
|
|
||||||
<mvc:mapping path="/approles/*"/>
|
|
||||||
|
|
||||||
<mvc:mapping path="/users/*" />
|
<mvc:mapping path="/users/*" />
|
||||||
<mvc:mapping path="/enterprises/*" />
|
|
||||||
<mvc:mapping path="/employees/*" />
|
<mvc:mapping path="/employees/*" />
|
||||||
<mvc:mapping path="/authInfo/*" />
|
|
||||||
<mvc:mapping path="/usercenter/*"/>
|
|
||||||
<bean class="org.maxkey.web.interceptor.PermissionAdapter" />
|
<bean class="org.maxkey.web.interceptor.PermissionAdapter" />
|
||||||
</mvc:interceptor>
|
</mvc:interceptor>
|
||||||
<!-- web Controller InterceptorAdapter for platform log -->
|
<!-- web Controller InterceptorAdapter for platform log -->
|
||||||
<mvc:interceptor>
|
<mvc:interceptor>
|
||||||
<mvc:mapping path="/users/*" />
|
<mvc:mapping path="/users/*" />
|
||||||
<mvc:mapping path="/userinfo/*" />
|
<mvc:mapping path="/userinfo/*" />
|
||||||
<mvc:mapping path="/enterprises/*" />
|
|
||||||
<mvc:mapping path="/employees/*" />
|
|
||||||
<mvc:mapping path="/authInfo/*" />
|
<mvc:mapping path="/authInfo/*" />
|
||||||
<mvc:mapping path="/usercenter/*"/>
|
|
||||||
<mvc:mapping path="/retrievePassword/*"/>
|
<mvc:mapping path="/retrievePassword/*"/>
|
||||||
<mvc:mapping path="/roles/*"/>
|
|
||||||
<mvc:mapping path="/applications/*"/>
|
|
||||||
<mvc:mapping path="/approles/*"/>
|
|
||||||
<bean class="org.maxkey.web.interceptor.HistoryLogsAdapter" />
|
<bean class="org.maxkey.web.interceptor.HistoryLogsAdapter" />
|
||||||
</mvc:interceptor>
|
</mvc:interceptor>
|
||||||
<!-- web Controller sso Adapter -->
|
<!-- web Controller sso Adapter -->
|
||||||
|
|||||||
Reference in New Issue
Block a user