Revert "Update .gitignore for Mac environment: replace Windows Maven repository paths with Mac paths"
This reverts commit 21050326
This commit is contained in:
parent
d0dff7f7e3
commit
6a14d8cd20
|
|
@ -1,35 +1,68 @@
|
||||||
HELP.md
|
# Java 编译输出
|
||||||
|
*.class
|
||||||
|
*.war
|
||||||
|
*.nar
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# JAR 文件(排除 lib 目录中的第三方依赖)
|
||||||
|
*.jar
|
||||||
|
!lib/*.jar
|
||||||
|
|
||||||
|
# Maven
|
||||||
target/
|
target/
|
||||||
!.mvn/wrapper/maven-wrapper.jar
|
pom.xml.tag
|
||||||
!**/src/main/**/target/
|
pom.xml.releaseBackup
|
||||||
!**/src/test/**/target/
|
pom.xml.versionsBackup
|
||||||
|
pom.xml.next
|
||||||
|
release.properties
|
||||||
|
dependency-reduced-pom.xml
|
||||||
|
buildNumber.properties
|
||||||
|
.mvn/timing.properties
|
||||||
|
.mvn/wrapper/maven-wrapper.jar
|
||||||
|
|
||||||
### STS ###
|
# Maven repository directories and D:/develop/soft 目录
|
||||||
.apt_generated
|
D:\develop\soft/
|
||||||
.classpath
|
**/D:\develop\soft/
|
||||||
.factorypath
|
D:/develop/soft/
|
||||||
.project
|
**/D:/develop/soft/
|
||||||
.settings
|
D:\\develop\\soft/
|
||||||
.springBeans
|
**/D:\\develop\\soft/
|
||||||
.sts4-cache
|
|
||||||
|
|
||||||
### IntelliJ IDEA ###
|
# IDE 相关文件
|
||||||
.idea
|
.idea/
|
||||||
*.iws
|
*.iws
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
|
|
||||||
### NetBeans ###
|
|
||||||
/nbproject/private/
|
|
||||||
/nbbuild/
|
|
||||||
/dist/
|
|
||||||
/nbdist/
|
|
||||||
/.nb-gradle/
|
|
||||||
build/
|
|
||||||
!**/src/main/**/build/
|
|
||||||
!**/src/test/**/build/
|
|
||||||
|
|
||||||
### VS Code ###
|
|
||||||
.vscode/
|
.vscode/
|
||||||
/dev_jco_rfc.log
|
.classpath
|
||||||
logs
|
.project
|
||||||
|
.settings/
|
||||||
|
|
||||||
|
# 日志文件
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# 临时文件
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
|
||||||
|
# 系统文件
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# 构建输出
|
||||||
|
build/
|
||||||
|
out/
|
||||||
|
bin/
|
||||||
|
|
||||||
|
# 依赖目录
|
||||||
|
node_modules/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue