mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-07 01:18:27 +08:00
gradle build
This commit is contained in:
parent
89a2314870
commit
ec9a82b35d
103
build_cnf.gradle
Normal file
103
build_cnf.gradle
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
/*
|
||||||
|
* Copyright [2021] [MaxKey of copyright http://www.maxkey.top]
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* MaxKey build file was auto generated by running the Gradle release.bat
|
||||||
|
*/
|
||||||
|
|
||||||
|
defaultTasks "configBuildStd"
|
||||||
|
|
||||||
|
//Version define
|
||||||
|
ext {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
task clearBuildGradle(){
|
||||||
|
delete "$rootDir/build.gradle"
|
||||||
|
delete "$rootDir/maxkey-webs/maxkey-web-mgt/build.gradle"
|
||||||
|
delete "$rootDir/maxkey-webs/maxkey-web-maxkey/build.gradle"
|
||||||
|
}
|
||||||
|
|
||||||
|
task configBuildStd(dependsOn:['clearBuildGradle']) {
|
||||||
|
copy {
|
||||||
|
from "$rootDir/maxkey-webs/maxkey-web-mgt/config/build_standard.gradle"
|
||||||
|
into "$rootDir/maxkey-webs/maxkey-web-mgt/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
copy {
|
||||||
|
from "$rootDir/maxkey-webs/maxkey-web-maxkey/config/build_standard.gradle"
|
||||||
|
into "$rootDir/maxkey-webs/maxkey-web-maxkey/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
copy {
|
||||||
|
from "$rootDir/config/build_standard.gradle"
|
||||||
|
into "$rootDir/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
|
||||||
|
println 'Standard Build MaxKey .'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
task configBuildDocker(dependsOn:['clearBuildGradle']) {
|
||||||
|
copy {
|
||||||
|
from "$rootDir/maxkey-webs/maxkey-web-mgt/config/build_docker.gradle"
|
||||||
|
into "$rootDir/maxkey-webs/maxkey-web-mgt/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
copy {
|
||||||
|
from "$rootDir/maxkey-webs/maxkey-web-maxkey/config/build_docker.gradle"
|
||||||
|
into "$rootDir/maxkey-webs/maxkey-web-maxkey/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
|
||||||
|
copy {
|
||||||
|
from "$rootDir/config/build_docker.gradle"
|
||||||
|
into "$rootDir/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
|
||||||
|
println 'Docker Build MaxKey .'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
task configBuildJar(dependsOn:['clearBuildGradle']) {
|
||||||
|
copy {
|
||||||
|
from "$rootDir/maxkey-webs/maxkey-web-mgt/config/build_jar.gradle"
|
||||||
|
into "$rootDir/maxkey-webs/maxkey-web-mgt/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
|
||||||
|
copy {
|
||||||
|
from "$rootDir/maxkey-webs/maxkey-web-maxkey/config/build_jar.gradle"
|
||||||
|
into "$rootDir/maxkey-webs/maxkey-web-maxkey/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
|
||||||
|
copy {
|
||||||
|
from "$rootDir/config/build_jar.gradle"
|
||||||
|
into "$rootDir/"
|
||||||
|
rename { String fileName -> 'build.gradle' }
|
||||||
|
}
|
||||||
|
|
||||||
|
println 'Java Jar Build MaxKey .'
|
||||||
|
}
|
||||||
|
|
||||||
|
// In this section you declare the dependencies for your production and test code
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,64 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2021] [MaxKey of copyright http://www.maxkey.top]
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* MaxKey build file was auto generated by running the Gradle release.bat
|
|
||||||
*/
|
|
||||||
defaultTasks "configBuildDocker"
|
|
||||||
|
|
||||||
//Version define
|
|
||||||
ext {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
task clearBuildGradle(){
|
|
||||||
delete "$rootDir/build.gradle"
|
|
||||||
delete "$rootDir/release.bat"
|
|
||||||
delete "$rootDir/maxkey-web-manage/build.gradle"
|
|
||||||
delete "$rootDir/maxkey-web-maxkey/build.gradle"
|
|
||||||
}
|
|
||||||
|
|
||||||
task configBuildDocker(dependsOn:['clearBuildGradle']) {
|
|
||||||
copy {
|
|
||||||
from "$rootDir/maxkey-web-manage/config/build_docker.gradle"
|
|
||||||
into "$rootDir/maxkey-web-manage/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
copy {
|
|
||||||
from "$rootDir/maxkey-web-maxkey/config/build_docker.gradle"
|
|
||||||
into "$rootDir/maxkey-web-maxkey/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
|
|
||||||
copy {
|
|
||||||
from "$rootDir/config/build_docker.gradle"
|
|
||||||
into "$rootDir/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
|
|
||||||
copy {
|
|
||||||
from "$rootDir/config/release_docker.bat"
|
|
||||||
into "$rootDir/"
|
|
||||||
rename { String fileName -> 'release.bat' }
|
|
||||||
}
|
|
||||||
|
|
||||||
println 'Docker Build MaxKey .'
|
|
||||||
}
|
|
||||||
|
|
||||||
// In this section you declare the dependencies for your production and test code
|
|
||||||
dependencies {
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,64 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2021] [MaxKey of copyright http://www.maxkey.top]
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* MaxKey build file was auto generated by running the Gradle release.bat
|
|
||||||
*/
|
|
||||||
|
|
||||||
defaultTasks "configBuildJar"
|
|
||||||
|
|
||||||
//Version define
|
|
||||||
ext {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
task clearBuildGradle(){
|
|
||||||
delete "$rootDir/build.gradle"
|
|
||||||
delete "$rootDir/release.bat"
|
|
||||||
delete "$rootDir/maxkey-web-manage/build.gradle"
|
|
||||||
delete "$rootDir/maxkey-web-maxkey/build.gradle"
|
|
||||||
}
|
|
||||||
|
|
||||||
task configBuildJar(dependsOn:['clearBuildGradle']) {
|
|
||||||
copy {
|
|
||||||
from "$rootDir/maxkey-web-manage/config/build_jar.gradle"
|
|
||||||
into "$rootDir/maxkey-web-manage/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
copy {
|
|
||||||
from "$rootDir/maxkey-web-maxkey/config/build_jar.gradle"
|
|
||||||
into "$rootDir/maxkey-web-maxkey/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
copy {
|
|
||||||
from "$rootDir/config/build_jar.gradle"
|
|
||||||
into "$rootDir/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
copy {
|
|
||||||
from "$rootDir/config/release_jar.bat"
|
|
||||||
into "$rootDir/"
|
|
||||||
rename { String fileName -> 'release.bat' }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
println 'Java Jar Build MaxKey .'
|
|
||||||
}
|
|
||||||
|
|
||||||
// In this section you declare the dependencies for your production and test code
|
|
||||||
dependencies {
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,64 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2021] [MaxKey of copyright http://www.maxkey.top]
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* MaxKey build file was auto generated by running the Gradle release.bat
|
|
||||||
*/
|
|
||||||
|
|
||||||
defaultTasks "configBuildStd"
|
|
||||||
|
|
||||||
//Version define
|
|
||||||
ext {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
task clearBuildGradle(){
|
|
||||||
delete "$rootDir/build.gradle"
|
|
||||||
delete "$rootDir/release.bat"
|
|
||||||
delete "$rootDir/maxkey-web-manage/build.gradle"
|
|
||||||
delete "$rootDir/maxkey-web-maxkey/build.gradle"
|
|
||||||
}
|
|
||||||
|
|
||||||
task configBuildStd(dependsOn:['clearBuildGradle']) {
|
|
||||||
copy {
|
|
||||||
from "$rootDir/maxkey-web-manage/config/build_standard.gradle"
|
|
||||||
into "$rootDir/maxkey-web-manage/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
copy {
|
|
||||||
from "$rootDir/maxkey-web-maxkey/config/build_standard.gradle"
|
|
||||||
into "$rootDir/maxkey-web-maxkey/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
copy {
|
|
||||||
from "$rootDir/config/build_standard.gradle"
|
|
||||||
into "$rootDir/"
|
|
||||||
rename { String fileName -> 'build.gradle' }
|
|
||||||
}
|
|
||||||
|
|
||||||
copy {
|
|
||||||
from "$rootDir/config/release_standard.bat"
|
|
||||||
into "$rootDir/"
|
|
||||||
rename { String fileName -> 'release.bat' }
|
|
||||||
}
|
|
||||||
|
|
||||||
println 'Standard Build MaxKey .'
|
|
||||||
}
|
|
||||||
|
|
||||||
// In this section you declare the dependencies for your production and test code
|
|
||||||
dependencies {
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -145,11 +145,13 @@ subprojects {
|
|||||||
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: "${commonshttpclientVersion}"
|
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: "${commonshttpclientVersion}"
|
||||||
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: "${commonsfileuploadVersion}"
|
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: "${commonsfileuploadVersion}"
|
||||||
implementation group: 'org.apache.commons', name: 'commons-email', version: "${commonsemailVersion}"
|
implementation group: 'org.apache.commons', name: 'commons-email', version: "${commonsemailVersion}"
|
||||||
|
implementation group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: "${httpasyncclientVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpcoreVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpcoreVersion}"
|
||||||
|
implementation group: 'org.apache.httpcomponents', name: 'httpcore-nio', version: "${httpcoreVersion}"
|
||||||
implementation group: 'org.apache.velocity', name: 'velocity', version: "${velocityVersion}"
|
implementation group: 'org.apache.velocity', name: 'velocity', version: "${velocityVersion}"
|
||||||
implementation group: 'velocity', name: 'velocity-dep', version: "${velocitydepVersion}"
|
implementation group: 'velocity', name: 'velocity-dep', version: "${velocitydepVersion}"
|
||||||
implementation group: 'org.freemarker', name: 'freemarker', version: "${freemarkerVersion}"
|
implementation group: 'org.freemarker', name: 'freemarker', version: "${freemarkerVersion}"
|
||||||
@ -162,6 +164,8 @@ subprojects {
|
|||||||
//implementation group: 'org.apache.commons', name: 'not-yet-commons-ssl', version: "${notyetcommonssslVersion}"
|
//implementation group: 'org.apache.commons', name: 'not-yet-commons-ssl', version: "${notyetcommonssslVersion}"
|
||||||
//tomcat embed Core Tomcat implementation
|
//tomcat embed Core Tomcat implementation
|
||||||
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: "${tomcatVersion}"
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: "${tomcatVersion}"
|
||||||
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-el', version: "${tomcatVersion}"
|
||||||
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: "${tomcatVersion}"
|
||||||
//JULI logging implementation for embedded Tomcat
|
//JULI logging implementation for embedded Tomcat
|
||||||
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: "${tomcatembedloggingjuliVersion}"
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: "${tomcatembedloggingjuliVersion}"
|
||||||
//apache logs
|
//apache logs
|
||||||
@ -185,7 +189,7 @@ subprojects {
|
|||||||
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
||||||
@ -193,7 +197,7 @@ subprojects {
|
|||||||
implementation group: 'org.springframework', name: 'spring-oxm', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-oxm', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-tx', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-tx', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-webflux', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-webflux', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-webmvc', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-webmvc', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-websocket', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-websocket', version: "${springVersion}"
|
||||||
testImplementation group: 'org.springframework', name: 'spring-test', version: "${springVersion}"
|
testImplementation group: 'org.springframework', name: 'spring-test', version: "${springVersion}"
|
||||||
@ -218,11 +222,21 @@ subprojects {
|
|||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-json', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-reactor-netty', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis-reactive', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: "${springBootVersion}"
|
||||||
|
|
||||||
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
||||||
|
//spring-boot-admin
|
||||||
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-client', version: "${springbootadminVersion}"
|
||||||
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-starter-client', version: "${springbootadminVersion}"
|
||||||
//spring-data
|
//spring-data
|
||||||
implementation group: 'org.springframework.data', name: 'spring-data-commons', version: "${springDataVersion}"
|
implementation group: 'org.springframework.data', name: 'spring-data-commons', version: "${springDataVersion}"
|
||||||
implementation group: 'org.springframework.data', name: 'spring-data-keyvalue', version: "${springDataVersion}"
|
implementation group: 'org.springframework.data', name: 'spring-data-keyvalue', version: "${springDataVersion}"
|
||||||
@ -233,6 +247,19 @@ subprojects {
|
|||||||
|
|
||||||
implementation group: 'org.springframework.plugin', name: 'spring-plugin-core', version: "${springplugincoreVersion}"
|
implementation group: 'org.springframework.plugin', name: 'spring-plugin-core', version: "${springplugincoreVersion}"
|
||||||
implementation group: 'org.springframework.plugin', name: 'spring-plugin-metadata', version: "${springpluginmetadataVersion}"
|
implementation group: 'org.springframework.plugin', name: 'spring-plugin-metadata', version: "${springpluginmetadataVersion}"
|
||||||
|
//spring cloud
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-commons', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-context', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap', version: "${springcloudVersion}"
|
||||||
|
//spring-cloud-alibaba
|
||||||
|
implementation group: 'com.alibaba.spring', name: 'spring-context-support', version: "${springcloudalibabaspringVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-alibaba-commons', version: "${springcloudalibabaVersion}"
|
||||||
|
//alibaba nacos
|
||||||
|
implementation group: 'com.alibaba.nacos', name: 'nacos-client', version: "${alibabanacosclientVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-discovery', version: "${springcloudalibabaVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-config', version: "${springcloudalibabaVersion}"
|
||||||
|
|
||||||
//saml
|
//saml
|
||||||
implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
||||||
implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
||||||
@ -253,6 +280,9 @@ subprojects {
|
|||||||
// https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence
|
// https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence
|
||||||
// for mybatis-jpa-extra
|
// for mybatis-jpa-extra
|
||||||
implementation group: 'org.eclipse.persistence', name: 'javax.persistence', version: "${javaxpersistenceVersion}"
|
implementation group: 'org.eclipse.persistence', name: 'javax.persistence', version: "${javaxpersistenceVersion}"
|
||||||
|
implementation group: 'jakarta.persistence', name: 'jakarta.persistence-api', version: '3.0.0'
|
||||||
|
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: "${jakartaannotationVersion}"
|
||||||
|
implementation group: 'jakarta.validation', name: 'jakarta.validation-api', version: "${jakartavalidationapiVersion}"
|
||||||
implementation group: 'javax.activation', name: 'activation', version: "${activationVersion}"
|
implementation group: 'javax.activation', name: 'activation', version: "${activationVersion}"
|
||||||
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: "${javaxannotationapiVersion}"
|
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: "${javaxannotationapiVersion}"
|
||||||
implementation group: 'javax.transaction', name: 'jta', version: "${jtaVersion}"
|
implementation group: 'javax.transaction', name: 'jta', version: "${jtaVersion}"
|
||||||
@ -287,6 +317,8 @@ subprojects {
|
|||||||
implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: "${druidspringbootstarterVersion}"
|
implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: "${druidspringbootstarterVersion}"
|
||||||
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
||||||
implementation group: 'org.ehcache', name: 'ehcache', version: "${ehcacheVersion}"
|
implementation group: 'org.ehcache', name: 'ehcache', version: "${ehcacheVersion}"
|
||||||
|
//implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.3.5'
|
||||||
|
|
||||||
//mybatis
|
//mybatis
|
||||||
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
||||||
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
||||||
@ -316,6 +348,9 @@ subprojects {
|
|||||||
implementation group: 'io.micrometer', name: 'micrometer-core', version: "${micrometercoreVersion}"
|
implementation group: 'io.micrometer', name: 'micrometer-core', version: "${micrometercoreVersion}"
|
||||||
implementation group: 'org.latencyutils', name: 'LatencyUtils', version: "${LatencyUtilsVersion}"
|
implementation group: 'org.latencyutils', name: 'LatencyUtils', version: "${LatencyUtilsVersion}"
|
||||||
implementation group: 'org.codehaus.woodstox', name: 'stax2-api', version: "${stax2apiVersion}"
|
implementation group: 'org.codehaus.woodstox', name: 'stax2-api', version: "${stax2apiVersion}"
|
||||||
|
implementation group: 'org.reflections', name: 'reflections', version: '0.9.11'
|
||||||
|
implementation group: 'io.prometheus', name: 'simpleclient', version: '0.5.0'
|
||||||
|
|
||||||
//阿里云
|
//阿里云
|
||||||
implementation group: 'com.aliyun', name: 'aliyun-java-sdk-core', version: "${aliyunjavasdkcoreVersion}"
|
implementation group: 'com.aliyun', name: 'aliyun-java-sdk-core', version: "${aliyunjavasdkcoreVersion}"
|
||||||
//腾讯云
|
//腾讯云
|
||||||
@ -324,9 +359,11 @@ subprojects {
|
|||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
||||||
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
||||||
|
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
||||||
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
||||||
//docs
|
//docs
|
||||||
|
|||||||
@ -145,11 +145,13 @@ subprojects {
|
|||||||
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: "${commonshttpclientVersion}"
|
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: "${commonshttpclientVersion}"
|
||||||
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: "${commonsfileuploadVersion}"
|
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: "${commonsfileuploadVersion}"
|
||||||
implementation group: 'org.apache.commons', name: 'commons-email', version: "${commonsemailVersion}"
|
implementation group: 'org.apache.commons', name: 'commons-email', version: "${commonsemailVersion}"
|
||||||
|
implementation group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: "${httpasyncclientVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpcoreVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpcoreVersion}"
|
||||||
|
implementation group: 'org.apache.httpcomponents', name: 'httpcore-nio', version: "${httpcoreVersion}"
|
||||||
implementation group: 'org.apache.velocity', name: 'velocity', version: "${velocityVersion}"
|
implementation group: 'org.apache.velocity', name: 'velocity', version: "${velocityVersion}"
|
||||||
implementation group: 'velocity', name: 'velocity-dep', version: "${velocitydepVersion}"
|
implementation group: 'velocity', name: 'velocity-dep', version: "${velocitydepVersion}"
|
||||||
implementation group: 'org.freemarker', name: 'freemarker', version: "${freemarkerVersion}"
|
implementation group: 'org.freemarker', name: 'freemarker', version: "${freemarkerVersion}"
|
||||||
@ -162,6 +164,8 @@ subprojects {
|
|||||||
//implementation group: 'org.apache.commons', name: 'not-yet-commons-ssl', version: "${notyetcommonssslVersion}"
|
//implementation group: 'org.apache.commons', name: 'not-yet-commons-ssl', version: "${notyetcommonssslVersion}"
|
||||||
//tomcat embed Core Tomcat implementation
|
//tomcat embed Core Tomcat implementation
|
||||||
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: "${tomcatVersion}"
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: "${tomcatVersion}"
|
||||||
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-el', version: "${tomcatVersion}"
|
||||||
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: "${tomcatVersion}"
|
||||||
//JULI logging implementation for embedded Tomcat
|
//JULI logging implementation for embedded Tomcat
|
||||||
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: "${tomcatembedloggingjuliVersion}"
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: "${tomcatembedloggingjuliVersion}"
|
||||||
//apache logs
|
//apache logs
|
||||||
@ -185,7 +189,7 @@ subprojects {
|
|||||||
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
||||||
@ -193,7 +197,7 @@ subprojects {
|
|||||||
implementation group: 'org.springframework', name: 'spring-oxm', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-oxm', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-tx', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-tx', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-webflux', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-webflux', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-webmvc', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-webmvc', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-websocket', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-websocket', version: "${springVersion}"
|
||||||
testImplementation group: 'org.springframework', name: 'spring-test', version: "${springVersion}"
|
testImplementation group: 'org.springframework', name: 'spring-test', version: "${springVersion}"
|
||||||
@ -218,11 +222,21 @@ subprojects {
|
|||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-json', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-reactor-netty', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis-reactive', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: "${springBootVersion}"
|
||||||
|
|
||||||
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
||||||
|
//spring-boot-admin
|
||||||
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-client', version: "${springbootadminVersion}"
|
||||||
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-starter-client', version: "${springbootadminVersion}"
|
||||||
//spring-data
|
//spring-data
|
||||||
implementation group: 'org.springframework.data', name: 'spring-data-commons', version: "${springDataVersion}"
|
implementation group: 'org.springframework.data', name: 'spring-data-commons', version: "${springDataVersion}"
|
||||||
implementation group: 'org.springframework.data', name: 'spring-data-keyvalue', version: "${springDataVersion}"
|
implementation group: 'org.springframework.data', name: 'spring-data-keyvalue', version: "${springDataVersion}"
|
||||||
@ -233,6 +247,19 @@ subprojects {
|
|||||||
|
|
||||||
implementation group: 'org.springframework.plugin', name: 'spring-plugin-core', version: "${springplugincoreVersion}"
|
implementation group: 'org.springframework.plugin', name: 'spring-plugin-core', version: "${springplugincoreVersion}"
|
||||||
implementation group: 'org.springframework.plugin', name: 'spring-plugin-metadata', version: "${springpluginmetadataVersion}"
|
implementation group: 'org.springframework.plugin', name: 'spring-plugin-metadata', version: "${springpluginmetadataVersion}"
|
||||||
|
//spring cloud
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-commons', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-context', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap', version: "${springcloudVersion}"
|
||||||
|
//spring-cloud-alibaba
|
||||||
|
implementation group: 'com.alibaba.spring', name: 'spring-context-support', version: "${springcloudalibabaspringVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-alibaba-commons', version: "${springcloudalibabaVersion}"
|
||||||
|
//alibaba nacos
|
||||||
|
implementation group: 'com.alibaba.nacos', name: 'nacos-client', version: "${alibabanacosclientVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-discovery', version: "${springcloudalibabaVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-config', version: "${springcloudalibabaVersion}"
|
||||||
|
|
||||||
//saml
|
//saml
|
||||||
implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
||||||
implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
||||||
@ -253,6 +280,9 @@ subprojects {
|
|||||||
// https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence
|
// https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence
|
||||||
// for mybatis-jpa-extra
|
// for mybatis-jpa-extra
|
||||||
implementation group: 'org.eclipse.persistence', name: 'javax.persistence', version: "${javaxpersistenceVersion}"
|
implementation group: 'org.eclipse.persistence', name: 'javax.persistence', version: "${javaxpersistenceVersion}"
|
||||||
|
implementation group: 'jakarta.persistence', name: 'jakarta.persistence-api', version: '3.0.0'
|
||||||
|
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: "${jakartaannotationVersion}"
|
||||||
|
implementation group: 'jakarta.validation', name: 'jakarta.validation-api', version: "${jakartavalidationapiVersion}"
|
||||||
implementation group: 'javax.activation', name: 'activation', version: "${activationVersion}"
|
implementation group: 'javax.activation', name: 'activation', version: "${activationVersion}"
|
||||||
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: "${javaxannotationapiVersion}"
|
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: "${javaxannotationapiVersion}"
|
||||||
implementation group: 'javax.transaction', name: 'jta', version: "${jtaVersion}"
|
implementation group: 'javax.transaction', name: 'jta', version: "${jtaVersion}"
|
||||||
@ -287,6 +317,8 @@ subprojects {
|
|||||||
implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: "${druidspringbootstarterVersion}"
|
implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: "${druidspringbootstarterVersion}"
|
||||||
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
||||||
implementation group: 'org.ehcache', name: 'ehcache', version: "${ehcacheVersion}"
|
implementation group: 'org.ehcache', name: 'ehcache', version: "${ehcacheVersion}"
|
||||||
|
//implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.3.5'
|
||||||
|
|
||||||
//mybatis
|
//mybatis
|
||||||
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
||||||
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
||||||
@ -316,6 +348,9 @@ subprojects {
|
|||||||
implementation group: 'io.micrometer', name: 'micrometer-core', version: "${micrometercoreVersion}"
|
implementation group: 'io.micrometer', name: 'micrometer-core', version: "${micrometercoreVersion}"
|
||||||
implementation group: 'org.latencyutils', name: 'LatencyUtils', version: "${LatencyUtilsVersion}"
|
implementation group: 'org.latencyutils', name: 'LatencyUtils', version: "${LatencyUtilsVersion}"
|
||||||
implementation group: 'org.codehaus.woodstox', name: 'stax2-api', version: "${stax2apiVersion}"
|
implementation group: 'org.codehaus.woodstox', name: 'stax2-api', version: "${stax2apiVersion}"
|
||||||
|
implementation group: 'org.reflections', name: 'reflections', version: '0.9.11'
|
||||||
|
implementation group: 'io.prometheus', name: 'simpleclient', version: '0.5.0'
|
||||||
|
|
||||||
//阿里云
|
//阿里云
|
||||||
implementation group: 'com.aliyun', name: 'aliyun-java-sdk-core', version: "${aliyunjavasdkcoreVersion}"
|
implementation group: 'com.aliyun', name: 'aliyun-java-sdk-core', version: "${aliyunjavasdkcoreVersion}"
|
||||||
//腾讯云
|
//腾讯云
|
||||||
@ -324,9 +359,11 @@ subprojects {
|
|||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
||||||
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
||||||
|
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
||||||
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
||||||
//docs
|
//docs
|
||||||
|
|||||||
@ -46,16 +46,16 @@ allprojects {
|
|||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = 1.8
|
||||||
compileJava.options.encoding = 'UTF-8'
|
compileJava.options.encoding = 'UTF-8'
|
||||||
/*
|
|
||||||
eclipse {
|
eclipse {
|
||||||
第一次时请注释这段eclipse设置,可能报错,设置工程字符集
|
/* 第一次时请注释这段eclipse设置,可能报错,设置工程字符集
|
||||||
jdt {
|
jdt {
|
||||||
File f = file('.settings/org.eclipse.core.resources.prefs')
|
File f = file('.settings/org.eclipse.core.resources.prefs')
|
||||||
f.write('eclipse.preferences.version=1\n')
|
f.write('eclipse.preferences.version=1\n')
|
||||||
f.append('encoding/<project>=UTF-8') //use UTF-8
|
f.append('encoding/<project>=UTF-8') //use UTF-8
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -74,6 +74,10 @@ repositories {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// In this section you declare the dependencies for your production and test code
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
@ -104,7 +108,9 @@ subprojects {
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/'}
|
maven { url "https://maven.aliyun.com/repository/central/"}
|
||||||
|
maven { url "https://maven.aliyun.com/repository/public/"}
|
||||||
|
maven { url "https://maven.aliyun.com/repository/spring/"}
|
||||||
maven { url "https://repo.spring.io/plugins-release/" }
|
maven { url "https://repo.spring.io/plugins-release/" }
|
||||||
maven { url "https://repo.spring.io/milestone" }
|
maven { url "https://repo.spring.io/milestone" }
|
||||||
maven { url "https://repo1.maven.org/maven2/" }
|
maven { url "https://repo1.maven.org/maven2/" }
|
||||||
@ -121,6 +127,7 @@ subprojects {
|
|||||||
|
|
||||||
//all dependencies
|
//all dependencies
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
//for Test and Compile
|
//for Test and Compile
|
||||||
testImplementation group: 'junit', name: 'junit', version: "${junitVersion}"
|
testImplementation group: 'junit', name: 'junit', version: "${junitVersion}"
|
||||||
compileOnly group: 'junit', name: 'junit', version: "${junitVersion}"
|
compileOnly group: 'junit', name: 'junit', version: "${junitVersion}"
|
||||||
@ -146,11 +153,13 @@ subprojects {
|
|||||||
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: "${commonshttpclientVersion}"
|
implementation group: 'commons-httpclient', name: 'commons-httpclient', version: "${commonshttpclientVersion}"
|
||||||
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: "${commonsfileuploadVersion}"
|
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: "${commonsfileuploadVersion}"
|
||||||
implementation group: 'org.apache.commons', name: 'commons-email', version: "${commonsemailVersion}"
|
implementation group: 'org.apache.commons', name: 'commons-email', version: "${commonsemailVersion}"
|
||||||
|
implementation group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: "${httpasyncclientVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'fluent-hc', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: "${httpcomponentsVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: "${httpcomponentsVersion}"
|
||||||
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpcoreVersion}"
|
implementation group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpcoreVersion}"
|
||||||
|
implementation group: 'org.apache.httpcomponents', name: 'httpcore-nio', version: "${httpcoreVersion}"
|
||||||
implementation group: 'org.apache.velocity', name: 'velocity', version: "${velocityVersion}"
|
implementation group: 'org.apache.velocity', name: 'velocity', version: "${velocityVersion}"
|
||||||
implementation group: 'velocity', name: 'velocity-dep', version: "${velocitydepVersion}"
|
implementation group: 'velocity', name: 'velocity-dep', version: "${velocitydepVersion}"
|
||||||
implementation group: 'org.freemarker', name: 'freemarker', version: "${freemarkerVersion}"
|
implementation group: 'org.freemarker', name: 'freemarker', version: "${freemarkerVersion}"
|
||||||
@ -163,6 +172,8 @@ subprojects {
|
|||||||
//implementation group: 'org.apache.commons', name: 'not-yet-commons-ssl', version: "${notyetcommonssslVersion}"
|
//implementation group: 'org.apache.commons', name: 'not-yet-commons-ssl', version: "${notyetcommonssslVersion}"
|
||||||
//tomcat embed Core Tomcat implementation
|
//tomcat embed Core Tomcat implementation
|
||||||
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: "${tomcatVersion}"
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: "${tomcatVersion}"
|
||||||
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-el', version: "${tomcatVersion}"
|
||||||
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: "${tomcatVersion}"
|
||||||
//JULI logging implementation for embedded Tomcat
|
//JULI logging implementation for embedded Tomcat
|
||||||
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: "${tomcatembedloggingjuliVersion}"
|
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: "${tomcatembedloggingjuliVersion}"
|
||||||
//apache logs
|
//apache logs
|
||||||
@ -186,7 +197,7 @@ subprojects {
|
|||||||
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
||||||
@ -194,7 +205,7 @@ subprojects {
|
|||||||
implementation group: 'org.springframework', name: 'spring-oxm', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-oxm', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-tx', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-tx', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-web', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-webflux', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-webflux', version: "${springVersion}"
|
||||||
implementation group: 'org.springframework', name: 'spring-webmvc', version: "${springVersion}"
|
implementation group: 'org.springframework', name: 'spring-webmvc', version: "${springVersion}"
|
||||||
//implementation group: 'org.springframework', name: 'spring-websocket', version: "${springVersion}"
|
//implementation group: 'org.springframework', name: 'spring-websocket', version: "${springVersion}"
|
||||||
testImplementation group: 'org.springframework', name: 'spring-test', version: "${springVersion}"
|
testImplementation group: 'org.springframework', name: 'spring-test', version: "${springVersion}"
|
||||||
@ -219,11 +230,21 @@ subprojects {
|
|||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-json', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-reactor-netty', version: "${springBootVersion}"
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis-reactive', version: "${springBootVersion}"
|
||||||
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: "${springBootVersion}"
|
||||||
|
|
||||||
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
||||||
|
//spring-boot-admin
|
||||||
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-client', version: "${springbootadminVersion}"
|
||||||
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-starter-client', version: "${springbootadminVersion}"
|
||||||
//spring-data
|
//spring-data
|
||||||
implementation group: 'org.springframework.data', name: 'spring-data-commons', version: "${springDataVersion}"
|
implementation group: 'org.springframework.data', name: 'spring-data-commons', version: "${springDataVersion}"
|
||||||
implementation group: 'org.springframework.data', name: 'spring-data-keyvalue', version: "${springDataVersion}"
|
implementation group: 'org.springframework.data', name: 'spring-data-keyvalue', version: "${springDataVersion}"
|
||||||
@ -234,6 +255,19 @@ subprojects {
|
|||||||
|
|
||||||
implementation group: 'org.springframework.plugin', name: 'spring-plugin-core', version: "${springplugincoreVersion}"
|
implementation group: 'org.springframework.plugin', name: 'spring-plugin-core', version: "${springplugincoreVersion}"
|
||||||
implementation group: 'org.springframework.plugin', name: 'spring-plugin-metadata', version: "${springpluginmetadataVersion}"
|
implementation group: 'org.springframework.plugin', name: 'spring-plugin-metadata', version: "${springpluginmetadataVersion}"
|
||||||
|
//spring cloud
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-commons', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-context', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter', version: "${springcloudVersion}"
|
||||||
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap', version: "${springcloudVersion}"
|
||||||
|
//spring-cloud-alibaba
|
||||||
|
implementation group: 'com.alibaba.spring', name: 'spring-context-support', version: "${springcloudalibabaspringVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-alibaba-commons', version: "${springcloudalibabaVersion}"
|
||||||
|
//alibaba nacos
|
||||||
|
implementation group: 'com.alibaba.nacos', name: 'nacos-client', version: "${alibabanacosclientVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-discovery', version: "${springcloudalibabaVersion}"
|
||||||
|
implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-config', version: "${springcloudalibabaVersion}"
|
||||||
|
|
||||||
//saml
|
//saml
|
||||||
implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
||||||
implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
||||||
@ -254,6 +288,9 @@ subprojects {
|
|||||||
// https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence
|
// https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence
|
||||||
// for mybatis-jpa-extra
|
// for mybatis-jpa-extra
|
||||||
implementation group: 'org.eclipse.persistence', name: 'javax.persistence', version: "${javaxpersistenceVersion}"
|
implementation group: 'org.eclipse.persistence', name: 'javax.persistence', version: "${javaxpersistenceVersion}"
|
||||||
|
implementation group: 'jakarta.persistence', name: 'jakarta.persistence-api', version: '3.0.0'
|
||||||
|
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: "${jakartaannotationVersion}"
|
||||||
|
implementation group: 'jakarta.validation', name: 'jakarta.validation-api', version: "${jakartavalidationapiVersion}"
|
||||||
implementation group: 'javax.activation', name: 'activation', version: "${activationVersion}"
|
implementation group: 'javax.activation', name: 'activation', version: "${activationVersion}"
|
||||||
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: "${javaxannotationapiVersion}"
|
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: "${javaxannotationapiVersion}"
|
||||||
implementation group: 'javax.transaction', name: 'jta', version: "${jtaVersion}"
|
implementation group: 'javax.transaction', name: 'jta', version: "${jtaVersion}"
|
||||||
@ -288,6 +325,8 @@ subprojects {
|
|||||||
implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: "${druidspringbootstarterVersion}"
|
implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: "${druidspringbootstarterVersion}"
|
||||||
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
||||||
implementation group: 'org.ehcache', name: 'ehcache', version: "${ehcacheVersion}"
|
implementation group: 'org.ehcache', name: 'ehcache', version: "${ehcacheVersion}"
|
||||||
|
//implementation group: 'org.liquibase', name: 'liquibase-core', version: '4.3.5'
|
||||||
|
|
||||||
//mybatis
|
//mybatis
|
||||||
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
||||||
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
||||||
@ -317,6 +356,9 @@ subprojects {
|
|||||||
implementation group: 'io.micrometer', name: 'micrometer-core', version: "${micrometercoreVersion}"
|
implementation group: 'io.micrometer', name: 'micrometer-core', version: "${micrometercoreVersion}"
|
||||||
implementation group: 'org.latencyutils', name: 'LatencyUtils', version: "${LatencyUtilsVersion}"
|
implementation group: 'org.latencyutils', name: 'LatencyUtils', version: "${LatencyUtilsVersion}"
|
||||||
implementation group: 'org.codehaus.woodstox', name: 'stax2-api', version: "${stax2apiVersion}"
|
implementation group: 'org.codehaus.woodstox', name: 'stax2-api', version: "${stax2apiVersion}"
|
||||||
|
implementation group: 'org.reflections', name: 'reflections', version: '0.9.11'
|
||||||
|
implementation group: 'io.prometheus', name: 'simpleclient', version: '0.5.0'
|
||||||
|
|
||||||
//阿里云
|
//阿里云
|
||||||
implementation group: 'com.aliyun', name: 'aliyun-java-sdk-core', version: "${aliyunjavasdkcoreVersion}"
|
implementation group: 'com.aliyun', name: 'aliyun-java-sdk-core', version: "${aliyunjavasdkcoreVersion}"
|
||||||
//腾讯云
|
//腾讯云
|
||||||
@ -325,9 +367,11 @@ subprojects {
|
|||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
||||||
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
||||||
|
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "${jacksonVersion}"
|
||||||
implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
||||||
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
||||||
//docs
|
//docs
|
||||||
@ -379,22 +423,22 @@ subprojects {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task copyjar2Release(type: Copy) {
|
tasks.register("buildRelease",Copy) {
|
||||||
println "$buildDir/libs/ to $rootDir/build/maxkey-jars/"
|
|
||||||
|
//项目名 项目所在的group version 版本号
|
||||||
|
println "subproject " + project.name + ", group " + project.group +" , version " + project.version
|
||||||
|
//copy
|
||||||
into "$rootDir/build/maxkey-jars/"
|
into "$rootDir/build/maxkey-jars/"
|
||||||
from "$buildDir/libs/"
|
from "$buildDir/libs/"
|
||||||
include '*.jar'
|
include '*.jar'
|
||||||
}
|
}
|
||||||
|
|
||||||
task buildRelease(dependsOn:['build','jar']) {
|
assemble.configure { finalizedBy buildRelease }
|
||||||
//项目名 项目所在的group version 版本号
|
|
||||||
println "project " + project.name + ", group " + project.group +" , version " + project.version
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//copy Dep Jars to /build/maxkey-depjars,only maxkey-common deps
|
//copy Dep Jars to /build/maxkey-depjars,only maxkey-common deps
|
||||||
project('maxkey-common') {
|
project('maxkey-common') {
|
||||||
task copyDepJars(type: Copy){
|
task createReleaseDir(type: Copy){
|
||||||
def paths = ["$rootDir/build/MaxKey-v${project.version}GA",
|
def paths = ["$rootDir/build/MaxKey-v${project.version}GA",
|
||||||
"$rootDir/build/MaxKey-v${project.version}GA/maxkey",
|
"$rootDir/build/MaxKey-v${project.version}GA/maxkey",
|
||||||
"$rootDir/build/MaxKey-v${project.version}GA/maxkey_mgt",
|
"$rootDir/build/MaxKey-v${project.version}GA/maxkey_mgt",
|
||||||
@ -408,28 +452,60 @@ project('maxkey-common') {
|
|||||||
dir.mkdirs();
|
dir.mkdirs();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
task copyDepJars (type: Copy){
|
||||||
|
dependsOn assemble
|
||||||
println "copy Dep Jars to $rootDir/build/MaxKey-v${project.version}GA/lib"
|
println "copy Dep Jars to $rootDir/build/MaxKey-v${project.version}GA/lib"
|
||||||
|
|
||||||
from configurations.runtimeClasspath
|
from configurations.runtimeClasspath
|
||||||
into "$rootDir/build/MaxKey-v${project.version}GA/lib";
|
into "$rootDir/build/MaxKey-v${project.version}GA/lib";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
build.configure { finalizedBy copyDepJars }
|
||||||
}
|
}
|
||||||
|
|
||||||
task copyMaxKey(type: Copy) {
|
//copy Dep Jars to /build/maxkey-depjars,only maxkey-boot-monitor deps
|
||||||
|
project('maxkey-webs:maxkey-boot-monitor') {
|
||||||
|
task createReleaseDir(type: Copy){
|
||||||
|
def paths = ["$rootDir/build/MaxKey-v${project.version}GA/maxkey_monitor"];
|
||||||
|
//遍历数组,调用createDir闭包,创建目录
|
||||||
|
|
||||||
|
paths.forEach(){path->
|
||||||
|
File dir=new File(path);
|
||||||
|
if (!dir.exists()){
|
||||||
|
print("create "+path+"\n")
|
||||||
|
dir.mkdirs();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
task copyDepJars(type:Copy) {
|
||||||
|
dependsOn assemble
|
||||||
|
//项目名 项目所在的group version 版本号
|
||||||
|
println "subproject " + project.name + ", group " + project.group +" , version " + project.version
|
||||||
|
//copy
|
||||||
|
from "$buildDir/libs/" include '*.jar'
|
||||||
|
from configurations.runtimeClasspath
|
||||||
|
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey_monitor";
|
||||||
|
}
|
||||||
|
|
||||||
|
build.configure { finalizedBy copyDepJars }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
project('maxkey-webs:maxkey-web-maxkey') {
|
||||||
|
|
||||||
|
task copyDepJars (type: Copy){
|
||||||
|
println "project copyMaxKey .";
|
||||||
|
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-authentication-social-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-authentication-social-${project.version}.jar"
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-web-maxkey-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-web-maxkey-${project.version}.jar"
|
||||||
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey/";
|
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey/";
|
||||||
}
|
}
|
||||||
|
|
||||||
task copyMaxKeyMgt(type: Copy) {
|
//common lib jars
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-identity-rest-${project.version}.jar"
|
task copyMaxKeyLibs(type: Copy) {
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-identity-scim-${project.version}.jar"
|
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-web-manage-${project.version}.jar"
|
|
||||||
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey_mgt/";
|
|
||||||
}
|
|
||||||
|
|
||||||
task copyMaxKeyLibs(type: Copy) {
|
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-authentication-otp-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-authentication-otp-${project.version}.jar"
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-authentication-captcha-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-authentication-captcha-${project.version}.jar"
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-authentication-core-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-authentication-core-${project.version}.jar"
|
||||||
@ -445,31 +521,56 @@ task copyMaxKeyLibs(type: Copy) {
|
|||||||
from "$rootDir/build/maxkey-jars/maxkey-protocol-oauth-2.0-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-protocol-oauth-2.0-${project.version}.jar"
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-protocol-saml-2.0-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-protocol-saml-2.0-${project.version}.jar"
|
||||||
from "$rootDir/build/maxkey-jars/maxkey-protocol-tokenbased-${project.version}.jar"
|
from "$rootDir/build/maxkey-jars/maxkey-protocol-tokenbased-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-web-resources-${project.version}.jar"
|
||||||
into "$rootDir/build/MaxKey-v${project.version}GA/lib";
|
into "$rootDir/build/MaxKey-v${project.version}GA/lib";
|
||||||
|
}
|
||||||
|
|
||||||
|
build.configure { finalizedBy copyDepJars }
|
||||||
|
|
||||||
|
copyDepJars.configure { finalizedBy copyMaxKeyLibs }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
task copyMaxKeyShellScript(type: Copy) {
|
|
||||||
from "$rootDir/shellscript"
|
project('maxkey-webs:maxkey-web-mgt') {
|
||||||
|
|
||||||
|
task copyDepJars (type: Copy){
|
||||||
|
println "project copyMaxKeyMgt .";
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-identity-rest-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-identity-scim-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-web-mgt-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-synchronizers-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-synchronizers-activedirectory-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-synchronizers-ldap-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-synchronizers-dingding-${project.version}.jar"
|
||||||
|
from "$rootDir/build/maxkey-jars/maxkey-synchronizers-workweixin-${project.version}.jar"
|
||||||
|
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey_mgt/";
|
||||||
|
}
|
||||||
|
|
||||||
|
build.configure { finalizedBy copyDepJars }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
tasks.register("buildRelease") {
|
||||||
|
dependsOn 'copyShellScript','copyWindowsShellScript'
|
||||||
|
|
||||||
|
//项目名 项目所在的group version 版本号
|
||||||
|
println "Root project " + project.name + ", group " + project.group +" , version " + project.version
|
||||||
|
//项目的绝对路径 to 项目的build文件绝对路径
|
||||||
|
println "Root project projectDir " + project.projectDir +" to " + project.buildDir
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.register("copyShellScript",Copy) {
|
||||||
|
println "project copyMaxKeyShellScript .";
|
||||||
|
|
||||||
|
from "$rootDir/shellscript/"
|
||||||
|
into "$rootDir/build/MaxKey-v${project.version}GA/shellscript/";
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.register("copyWindowsShellScript",Copy) {
|
||||||
|
println "project copyMaxKeyWindowsShellScript .";
|
||||||
|
from "$rootDir/shellscript/windows"
|
||||||
into "$rootDir/build/MaxKey-v${project.version}GA/";
|
into "$rootDir/build/MaxKey-v${project.version}GA/";
|
||||||
}
|
}
|
||||||
|
|
||||||
task buildReleaseCopy(dependsOn:['copyMaxKey','copyMaxKeyMgt','copyMaxKeyLibs','copyMaxKeyShellScript']) {
|
build.configure { finalizedBy buildRelease }
|
||||||
//项目名
|
|
||||||
println "project ReleaseCopy ."
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
task buildRelease(dependsOn:['build']) {
|
|
||||||
//项目名 项目所在的group version 版本号
|
|
||||||
println "project " + project.name + ", group " + project.group +" , version " + project.version
|
|
||||||
//项目的绝对路径
|
|
||||||
println "project projectDir " + project.projectDir
|
|
||||||
//项目的build文件绝对路径
|
|
||||||
println "project buildDir " + project.buildDir
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// In this section you declare the dependencies for your production and test code
|
|
||||||
dependencies {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@ -1,32 +0,0 @@
|
|||||||
call setEnvVars.bat
|
|
||||||
|
|
||||||
set START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
|
||||||
echo start time %START_TIME%
|
|
||||||
call %JAVA_HOME%/bin/java -version
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -version
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -q projects
|
|
||||||
|
|
||||||
echo start clean . . .
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle clean
|
|
||||||
|
|
||||||
echo start clean complete .
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle buildRelease
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle jib
|
|
||||||
|
|
||||||
cd build
|
|
||||||
rd /q /s libs
|
|
||||||
|
|
||||||
rd /q /s tmp
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
|
||||||
|
|
||||||
echo Build Release start at %START_TIME% complete at %END_TIME%.
|
|
||||||
|
|
||||||
pause
|
|
||||||
@ -1,30 +0,0 @@
|
|||||||
call setEnvVars.bat
|
|
||||||
|
|
||||||
set START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
|
||||||
echo start time %START_TIME%
|
|
||||||
call %JAVA_HOME%/bin/java -version
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -version
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -q projects
|
|
||||||
|
|
||||||
echo start clean . . .
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle clean
|
|
||||||
|
|
||||||
echo start clean complete .
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle buildRelease
|
|
||||||
|
|
||||||
cd build
|
|
||||||
rd /q /s libs
|
|
||||||
|
|
||||||
rd /q /s tmp
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
|
||||||
|
|
||||||
echo Build Release start at %START_TIME% complete at %END_TIME%.
|
|
||||||
|
|
||||||
pause
|
|
||||||
@ -1,34 +0,0 @@
|
|||||||
call setEnvVars.bat
|
|
||||||
|
|
||||||
set START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
|
||||||
echo start time %START_TIME%
|
|
||||||
call %JAVA_HOME%/bin/java -version
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -version
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -q projects
|
|
||||||
|
|
||||||
echo start clean . . .
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle clean
|
|
||||||
|
|
||||||
echo start clean complete .
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle buildRelease
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle copyDepJars
|
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle buildReleaseCopy
|
|
||||||
|
|
||||||
cd build
|
|
||||||
rd /q /s libs
|
|
||||||
|
|
||||||
rd /q /s tmp
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"
|
|
||||||
|
|
||||||
echo Build Release start at %START_TIME% complete at %END_TIME%.
|
|
||||||
|
|
||||||
pause
|
|
||||||
@ -48,7 +48,6 @@ dependencies {
|
|||||||
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
|
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-cas")
|
implementation project(":maxkey-protocols:maxkey-protocol-cas")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-desktop")
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-extendapi")
|
implementation project(":maxkey-protocols:maxkey-protocol-extendapi")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-formbased")
|
implementation project(":maxkey-protocols:maxkey-protocol-formbased")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-tokenbased")
|
implementation project(":maxkey-protocols:maxkey-protocol-tokenbased")
|
||||||
@ -56,4 +55,6 @@ dependencies {
|
|||||||
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-jwt")
|
implementation project(":maxkey-protocols:maxkey-protocol-jwt")
|
||||||
|
|
||||||
|
implementation project(":maxkey-webs:maxkey-web-resources")
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -47,11 +47,12 @@ dependencies {
|
|||||||
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
|
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-cas")
|
implementation project(":maxkey-protocols:maxkey-protocol-cas")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-desktop")
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-extendapi")
|
implementation project(":maxkey-protocols:maxkey-protocol-extendapi")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-formbased")
|
implementation project(":maxkey-protocols:maxkey-protocol-formbased")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-tokenbased")
|
implementation project(":maxkey-protocols:maxkey-protocol-tokenbased")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-jwt")
|
implementation project(":maxkey-protocols:maxkey-protocol-jwt")
|
||||||
|
|
||||||
|
implementation project(":maxkey-webs:maxkey-web-resources")
|
||||||
}
|
}
|
||||||
@ -15,11 +15,12 @@ dependencies {
|
|||||||
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
|
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-cas")
|
implementation project(":maxkey-protocols:maxkey-protocol-cas")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-desktop")
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-extendapi")
|
implementation project(":maxkey-protocols:maxkey-protocol-extendapi")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-formbased")
|
implementation project(":maxkey-protocols:maxkey-protocol-formbased")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-tokenbased")
|
implementation project(":maxkey-protocols:maxkey-protocol-tokenbased")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-jwt")
|
implementation project(":maxkey-protocols:maxkey-protocol-jwt")
|
||||||
|
|
||||||
|
implementation project(":maxkey-webs:maxkey-web-resources")
|
||||||
}
|
}
|
||||||
|
|||||||
@ -47,7 +47,16 @@ dependencies {
|
|||||||
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
||||||
|
|
||||||
|
//identity
|
||||||
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
||||||
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-activedirectory")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-ldap")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-workweixin")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-dingding")
|
||||||
|
|
||||||
|
implementation project(":maxkey-webs:maxkey-web-resources")
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -50,6 +50,15 @@ dependencies {
|
|||||||
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
||||||
|
|
||||||
|
//identity
|
||||||
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
||||||
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-activedirectory")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-ldap")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-workweixin")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-dingding")
|
||||||
|
|
||||||
|
implementation project(":maxkey-webs:maxkey-web-resources")
|
||||||
}
|
}
|
||||||
|
|||||||
@ -14,6 +14,15 @@ dependencies {
|
|||||||
|
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
||||||
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
||||||
|
|
||||||
|
//identity
|
||||||
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
||||||
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-activedirectory")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-ldap")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-workweixin")
|
||||||
|
implementation project(":maxkey-identitys:maxkey-synchronizers-dingding")
|
||||||
|
|
||||||
|
implementation project(":maxkey-webs:maxkey-web-resources")
|
||||||
}
|
}
|
||||||
@ -6,6 +6,6 @@ call %JAVA_HOME%/bin/java -version
|
|||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -version
|
call %GRADLE_HOME%/bin/gradle -version
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -b build_cnf_docker.gradle
|
call %GRADLE_HOME%/bin/gradle configBuildDocker -b build_cnf.gradle
|
||||||
|
|
||||||
pause
|
pause
|
||||||
@ -6,6 +6,6 @@ call %JAVA_HOME%/bin/java -version
|
|||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -version
|
call %GRADLE_HOME%/bin/gradle -version
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -b build_cnf_jar.gradle
|
call %GRADLE_HOME%/bin/gradle configBuildJar -b build_cnf.gradle
|
||||||
|
|
||||||
pause
|
pause
|
||||||
@ -6,6 +6,6 @@ call %JAVA_HOME%/bin/java -version
|
|||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -version
|
call %GRADLE_HOME%/bin/gradle -version
|
||||||
|
|
||||||
call %GRADLE_HOME%/bin/gradle -b build_cnf_standard.gradle
|
call %GRADLE_HOME%/bin/gradle configBuildStd -b build_cnf.gradle
|
||||||
|
|
||||||
pause
|
pause
|
||||||
Loading…
x
Reference in New Issue
Block a user