Skip to content

Commit 5a247ea

Browse files
committed
Merge pull request #2 from praisetompane/gradle_clean_up
fix: clean up gradle
2 parents e85452a + 777d136 commit 5a247ea

41 files changed

Lines changed: 154 additions & 3329 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/java.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: java
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check Out Repository
14+
uses: actions/checkout@v4
15+
16+
- name: Spell Check
17+
uses: rojopolis/spellcheck-github-actions@0.45.0
18+
with:

.gitignore

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,30 @@
2121

2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
24-
replay_pid*
24+
replay_pid*
25+
build
26+
27+
28+
.gradle
29+
**/build/
30+
!src/**/build/
31+
32+
# Ignore Gradle GUI config
33+
gradle-app.setting
34+
35+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
36+
!gradle-wrapper.jar
37+
38+
# Avoid ignore Gradle wrappper properties
39+
!gradle-wrapper.properties
40+
41+
# Cache of project
42+
.gradletasknamecache
43+
44+
# Eclipse Gradle plugin generated files
45+
# Eclipse Core
46+
.project
47+
# JDT-specific (Eclipse Java Development Tools)
48+
.classpath
49+
50+
gradle
-17 Bytes
Binary file not shown.
-19.2 KB
Binary file not shown.
-21 KB
Binary file not shown.
-26.3 KB
Binary file not shown.
-17 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
-19.9 KB
Binary file not shown.
-17 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)