Skip to content

Commit

Permalink
UPDATE 屏蔽bak文件
Browse files Browse the repository at this point in the history
  • Loading branch information
sun0x00 committed Jan 8, 2019
1 parent 4b7c905 commit f5ea311
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -59,7 +59,9 @@ target/
bin/

*.bak
bak/

.pydevproject

build/

Expand Down
10 changes: 10 additions & 0 deletions rt-core/build.gradle
@@ -1,7 +1,17 @@
plugins {
id 'java'
id 'eclipse'
id 'idea'
}

group = "${rootProject.group}"
version = "${rootProject.version}"
description = """核心模块"""

jar{
exclude("**.bak")
}

dependencies {
compile project(':rt-common')
compile group: 'com.lmax', name: 'disruptor', version:"${rootProject.disruptorVersion}"
Expand Down
5 changes: 4 additions & 1 deletion rt-front-web/build.gradle
Expand Up @@ -15,7 +15,10 @@ war{
}

bootWar {
exclude("**/static/ReactSPA/node_modules/")
excludes = [
"**/static/ReactSPA/node_modules/",
"**/WEB-INF/classes/bak/"
]
}

springBoot {
Expand Down

0 comments on commit f5ea311

Please sign in to comment.