Skip to content

Commit

Permalink
feat: 支持国际化 TencentBlueKing#26
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuanruitao committed Feb 22, 2023
1 parent 1d5dc27 commit e2ea5ae
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 12 additions & 2 deletions src/backend/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,18 @@ allprojects {
into "../../frontend/target/frontend"
}

task buildZip(type: Zip, dependsOn: [shadowJar, copyFrontend]) {
from "build/libs", "task.json", "quality.json", "../../frontend/target"
task copyDocs(type:Copy) {
from "../../../docs"
into "../../../target/file/docs"
}

task copyImages(type:Copy) {
from "../../../images"
into "../../../target/file/images"
}

task buildZip(type: Zip, dependsOn: [shadowJar, copyFrontend, copyDocs, copyImages]) {
from "build/libs", "task.json", "quality.json", "../../frontend/target", "../../../target"
into "CodeCCCheckAtom"
}

Expand Down
Binary file added target/file/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e2ea5ae

Please sign in to comment.