release docker bootjar standard
release docker bootjar standard
This commit is contained in:
64
build_cnf_docker.gradle
Normal file
64
build_cnf_docker.gradle
Normal file
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* 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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user