Last active
July 1, 2026 15:35
-
-
Save Kashifbaigqa/71d3ef4baed5e7371fee8f7daf68ccbe to your computer and use it in GitHub Desktop.
Sample .gitignore file content for salenium data driven framework using java, maven, eclipse..
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Eclipse | |
| .classpath | |
| .project | |
| .settings/ | |
| .metadata | |
| bin/ | |
| tmp/ | |
| *.tmp | |
| *.bak | |
| *.swp | |
| *~.nib | |
| local.properties | |
| .loadpath | |
| .factorypath | |
| *.launch | |
| # Java | |
| *.class | |
| *.war | |
| *.ear | |
| *.nar | |
| # Maven | |
| target/ | |
| /target/ | |
| pom.xml.tag | |
| pom.xml.releaseBackup | |
| pom.xml.versionsBackup | |
| pom.xml.next | |
| pom.xml.bak | |
| release.properties | |
| dependency-reduced-pom.xml | |
| buildNumber.properties | |
| # Log files and reports | |
| *.log | |
| hs_err_pid* | |
| /test-output/ | |
| /emailable-report.html | |
| /surefire-reports/ | |
| /ExtentReport/ | |
| # OS-specific files | |
| .DS_Store # Mac | |
| Thumbs.db # Windows | |
| ehthumbs.db # Windows | |
| Desktop.ini # Windows | |
| # Temporary or miscellaneous files | |
| src/test/resources/credentials.properties # Exclude sensitive data | |
| !src/test/resources/credentials.properties.example #include example data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment