File tree 7 files changed +116
-23
lines changed 7 files changed +116
-23
lines changed Original file line number Diff line number Diff line change 29
29
# These files are binary and should be left untouched
30
30
# (binary is a macro for -text -diff)
31
31
# Archives
32
- * .7z - text filter = lfs diff = lfs merge = lfs
33
- * .br - text filter = lfs diff = lfs merge = lfs
34
- * .gz - text filter = lfs diff = lfs merge = lfs
35
- * .tar - text filter = lfs diff = lfs merge = lfs
36
- * .zip - text filter = lfs diff = lfs merge = lfs
37
- * .jar - text
38
- * .so - text
39
- * .war - text
40
- * .dll - text
32
+ * .7z binary
33
+ * .br binary
34
+ * .gz binary
35
+ * .tar binary
36
+ * .zip binary
37
+ * .jar binary
38
+ * .so binary
39
+ * .war binary
40
+ * .dll binary
41
41
42
42
# Documents
43
- * .pdf - text filter = lfs diff = lfs merge = lfs
43
+ * .pdf binary
44
44
45
45
# Images
46
- * .ico - text filter = lfs diff = lfs merge = lfs
47
- * .gif - text filter = lfs diff = lfs merge = lfs
48
- * .jpg - text filter = lfs diff = lfs merge = lfs
49
- * .jpeg - text filter = lfs diff = lfs merge = lfs
50
- * .png - text filter = lfs diff = lfs merge = lfs
51
- * .psd - text filter = lfs diff = lfs merge = lfs
52
- * .webp - text filter = lfs diff = lfs merge = lfs
46
+ * .ico binary
47
+ * .gif binary
48
+ * .jpg binary
49
+ * .jpeg binary
50
+ * .png binary
51
+ * .psd binary
52
+ * .webp binary
53
53
54
54
# Fonts
55
- * .woff2 - text filter = lfs diff = lfs merge = lfs
55
+ * .woff2 binary
56
56
57
57
# Other
58
- * .exe - text filter = lfs diff = lfs merge = lfs
58
+ * .exe binary
59
59
* .class binary
60
60
* .ear binary
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Bug report
3
+ about : Create a report to help us improve
4
+ title : ' '
5
+ labels : bug
6
+ assignees : GoodforGod
7
+
8
+ ---
9
+
10
+ ** Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ ** To Reproduce**
14
+ Steps to reproduce the behavior:
15
+ 1 . Go to '...'
16
+ 2 . Click on '....'
17
+ 3 . Scroll down to '....'
18
+ 4 . See error
19
+
20
+ ** Expected behavior**
21
+ A clear and concise description of what you expected to happen.
22
+
23
+ ** Screenshots**
24
+ If applicable, add screenshots to help explain your problem.
25
+
26
+ ** Additional context**
27
+ Add any other context about the problem here.
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Feature request
3
+ about : Suggest an idea for this project
4
+ title : ' '
5
+ labels : enhancement
6
+ assignees : GoodforGod
7
+
8
+ ---
9
+
10
+ ** Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12
+
13
+ ** Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ ** Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ ** Additional context**
20
+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change
1
+ name : Java CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+ - dev
11
+
12
+ jobs :
13
+ build :
14
+ runs-on : ubuntu-latest
15
+ strategy :
16
+ matrix :
17
+ java : [ '11', '17' ]
18
+ name : Java ${{ matrix.java }} setup
19
+
20
+ steps :
21
+ - uses : actions/checkout@v1
22
+ - name : Set up JDK
23
+ uses : actions/setup-java@v1
24
+
25
+ with :
26
+ java-version : ${{ matrix.java }}
27
+
28
+ - name : Code Style
29
+ run : ./gradlew spotlessCheck
30
+
31
+ - name : Build
32
+ run : ./gradlew classes
33
+
34
+ - name : Test
35
+ run : ./gradlew test jacocoTestReport
36
+
37
+ - name : SonarQube
38
+ run : ./gradlew sonarqube
39
+ env :
40
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41
+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ spotless {
46
46
encoding(" UTF-8" )
47
47
importOrder()
48
48
removeUnusedImports()
49
- eclipse(" 4.21.0" ). configFile(" ${ projectDir} /codestyle.xml" )
49
+ eclipse(" 4.21.0" ). configFile(" ${ projectDir} /config/ codestyle.xml" )
50
50
}
51
51
}
52
52
@@ -83,8 +83,8 @@ publishing {
83
83
}
84
84
repositories {
85
85
maven {
86
- def releasesRepoUrl = " https://oss.sonatype.org/service/local/staging/deploy/maven2"
87
- def snapshotsRepoUrl = " https://oss.sonatype.org/content/repositories/snapshots/"
86
+ def releasesRepoUrl = " https://s01. oss.sonatype.org/service/local/staging/deploy/maven2"
87
+ def snapshotsRepoUrl = " https://s01. oss.sonatype.org/content/repositories/snapshots/"
88
88
url = version. endsWith(" SNAPSHOT" ) ? snapshotsRepoUrl : releasesRepoUrl
89
89
credentials {
90
90
username System . getenv(" OSS_USERNAME" )
File renamed without changes.
Original file line number Diff line number Diff line change @@ -8,4 +8,9 @@ org.gradle.daemon=true
8
8
org.gradle.parallel =true
9
9
org.gradle.configureondemand =true
10
10
org.gradle.caching =true
11
- org.gradle.jvmargs =-Dfile.encoding=UTF-8
11
+ org.gradle.jvmargs =-Dfile.encoding=UTF-8 \
12
+ --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
13
+ --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
14
+ --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
15
+ --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
16
+ --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
You can’t perform that action at this time.
0 commit comments