You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1011 B
31 lines
1011 B
11 months ago
|
dependencies {
|
||
|
api(
|
||
|
project(":io.sc.platform.attachment"),
|
||
|
project(":io.sc.platform.attachment.api"),
|
||
|
project(":io.sc.platform.core"),
|
||
|
project(":io.sc.platform.flowable"),
|
||
|
project(":io.sc.platform.orm"),
|
||
|
project(":io.sc.platform.mvc"),
|
||
|
|
||
|
project(":io.sc.engine.rule.core"),
|
||
|
project(":io.sc.engine.rule.client"),
|
||
|
project(":io.sc.engine.rule.client.spring"),
|
||
|
project(":io.sc.engine.rule.frontend"),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
processResources {
|
||
|
filesMatching('**/*.java') {
|
||
|
filteringCharset = 'UTF-8'
|
||
|
filter(org.apache.tools.ant.filters.ReplaceTokens, beginToken: '', endToken: '',tokens: [version: '' + project.version])
|
||
|
}
|
||
|
|
||
|
doLast{
|
||
|
// 为了能够兼容 eclipse 和 idea 两种开发环境,调整如下:
|
||
|
// 1. 将 environment.properties 文件放在了 src/main/resources 目录中
|
||
|
// 2. 在打包时,将该文件删除
|
||
|
delete "$buildDir/resources/main/running-mode.properties"
|
||
|
}
|
||
|
|
||
|
}
|