.gitignore (217B)
1 # Eclipse 2 .classpath 3 .project 4 .settings/ 5 6 # Intellij 7 .idea/ 8 *.iml 9 *.iws 10 11 # Mac 12 .DS_Store 13 14 # Maven 15 target/ 16 **/dependency-reduced-pom.xml 17 18 # Gradle 19 /.gradle 20 build/ 21 */out/ 22 */*/out/ 23 24 # VS Code 25 bin/ 26 .vscode/ 27 28 # make 29 c.out