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.

38 lines
1.3 KiB

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"),
8 months ago
project(":io.sc.platform.poi"),
11 months ago
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"),
8 months ago
7 months ago
"org.webjars:org.webjars.codemirror:5.37.0",
"org.webjars:org.webjars.mxgraph:3.9.12",
"org.webjars:org.webjars.jquery:1.12.4",
7 months ago
"org.webjars:org.webjars.mathfonts:1.0.0",
7 months ago
"org.webjars:org.webjars.mathcss:1.0.0",
11 months ago
)
}
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"
}
}