1
1
/*
2
- * This file was generated by the Gradle 'init' task.
3
- */
2
+ * This file was generated by the Gradle 'init' task.
3
+ */
4
4
5
5
plugins {
6
6
id ' java'
7
7
id ' maven-publish'
8
8
id ' eclipse'
9
+ id ' checkstyle'
9
10
id ' org.springframework.boot' version ' 2.6.2'
10
-
11
+ id ' com.diffplug.spotless ' version ' 6.19.0 '
11
12
}
12
13
13
14
repositories {
@@ -21,6 +22,28 @@ repositories {
21
22
}
22
23
}
23
24
25
+ apply plugin :' com.diffplug.spotless'
26
+ spotless {
27
+ format ' misc' , {
28
+ target ' **/*.md' , ' **/*.properties' , ' **/.gitignore' , ' **/.openapi-generator-ignore' , ' **/*.yml' , ' **/*.xml' , ' **/**.json' , ' **/*.sql'
29
+ targetExclude ' **/build/**' ,' **/gsmastub/**' , ' **/bin/**' , ' **/.settings/**' , ' **/.idea/**' , ' **/.gradle/**' , ' **/gradlew.bat' , ' **/licenses/**' , ' **/banner.txt' , ' .vscode/**'
30
+ indentWithSpaces(4 )
31
+ endWithNewline()
32
+ trimTrailingWhitespace()
33
+ }
34
+
35
+ groovyGradle {
36
+ target ' *.gradle' , ' **/*.gradle'
37
+ targetExclude ' **/build/**' , ' **/gsmastub/**'
38
+ greclipse()
39
+ indentWithSpaces(4 )
40
+ endWithNewline()
41
+ trimTrailingWhitespace()
42
+ }
43
+
44
+ lineEndings ' UNIX'
45
+ }
46
+
24
47
dependencies {
25
48
implementation ' com.google.code.gson:gson:2.8.9'
26
49
implementation ' org.mifos:ph-ee-connector-common:1.4.1-SNAPSHOT'
@@ -54,8 +77,117 @@ dependencies {
54
77
implementation " org.springdoc:springdoc-openapi-ui:1.6.11"
55
78
implementation ' org.projectlombok:lombok:1.18.22'
56
79
annotationProcessor ' org.projectlombok:lombok:1.18.24'
80
+ checkstyle ' com.puppycrawl.tools:checkstyle:10.9.3'
81
+ checkstyle ' com.github.sevntu-checkstyle:sevntu-checks:1.44.1'
82
+ implementation ' com.diffplug.gradle.spotless:spotless:2.4.1'
83
+ implementation ' com.diffplug.spotless:spotless-plugin-gradle:6.17.0'
84
+ }
85
+
86
+ configure(this ) {
87
+ // NOTE: order matters!
88
+ apply plugin : ' java'
89
+ apply plugin : ' idea'
90
+ apply plugin : ' eclipse'
91
+ apply plugin : ' checkstyle'
92
+ configurations {
93
+ implementation. setCanBeResolved(true )
94
+ api. setCanBeResolved(true )
95
+ }
96
+ tasks. withType(JavaCompile ) {
97
+ options. compilerArgs + = [
98
+ " -Xlint:unchecked" ,
99
+ " -Xlint:cast" ,
100
+ " -Xlint:auxiliaryclass" ,
101
+ " -Xlint:deprecation" ,
102
+ " -Xlint:dep-ann" ,
103
+ " -Xlint:divzero" ,
104
+ " -Xlint:empty" ,
105
+ " -Xlint:exports" ,
106
+ " -Xlint:fallthrough" ,
107
+ " -Xlint:finally" ,
108
+ " -Xlint:module" ,
109
+ " -Xlint:opens" ,
110
+ " -Xlint:options" ,
111
+ " -Xlint:overloads" ,
112
+ " -Xlint:overrides" ,
113
+ " -Xlint:path" ,
114
+ " -Xlint:processing" ,
115
+ " -Xlint:removal" ,
116
+ " -Xlint:requires-automatic" ,
117
+ " -Xlint:requires-transitive-automatic" ,
118
+ " -Xlint:try" ,
119
+ " -Xlint:varargs" ,
120
+ " -Xlint:preview" ,
121
+ " -Xlint:static" ,
122
+ // -Werror needs to be disabled because EclipseLink's static weaving doesn't generate warning-free code
123
+ // and during an IntelliJ recompilation, it fails
124
+ // "-Werror",
125
+ " -Xmaxwarns" ,
126
+ 1500 ,
127
+ " -Xmaxerrs" ,
128
+ 1500
129
+ ]
130
+ options. deprecation = true
131
+ }
132
+ // Configuration for the spotless plugin
133
+ // https://github.com/diffplug/spotless/tree/main/plugin-gradle
134
+ spotless {
135
+ java {
136
+ targetExclude ' **/build/**' , ' **/bin/**' , ' **/out/**' , ' **/gsmastub/**'
137
+ importOrder() // sort imports alphabetically
138
+ removeUnusedImports()
139
+ eclipse(). configFile " $rootDir /config/channel-formatter.xml"
140
+ endWithNewline()
141
+ trimTrailingWhitespace()
142
+ // Enforce style modifier order
143
+ custom ' Modifier ordering' , {
144
+ def modifierRanking = [
145
+ public : 1 ,
146
+ protected : 2 ,
147
+ private : 3 ,
148
+ abstract : 4 ,
149
+ default : 5 ,
150
+ static : 6 ,
151
+ final : 7 ,
152
+ transient : 8 ,
153
+ volatile : 9 ,
154
+ synchronized : 10 ,
155
+ native : 11 ,
156
+ strictfp : 12 ]
157
+ // Find any instance of multiple modifiers. Lead with a non-word character to avoid
158
+ // accidental matching against for instance, "an alternative default value"
159
+ it. replaceAll(/ \W (?:public |protected |private |abstract |default |static |final |transient |volatile |synchronized |native |strictfp ){2,}/ , {
160
+ // Do not replace the leading non-word character. Identify the modifiers
161
+ it. replaceAll(/ (?:public |protected |private |abstract |default |static |final |transient |volatile |synchronized |native |strictfp ){2,}/ , {
162
+ // Sort the modifiers according to the ranking above
163
+ it. split(). sort({ modifierRanking[it] }). join(' ' ) + ' '
164
+ }
165
+ )
166
+ }
167
+ )
168
+ }
169
+ }
170
+ lineEndings ' UNIX'
171
+ }
172
+ // If we are running Gradle within Eclipse to enhance classes,
173
+ // set the classes directory to point to Eclipse's default build directory
174
+ if (project. hasProperty(' env' ) && project. getProperty(' env' ) == ' eclipse' ) {
175
+ sourceSets. main. java. outputDir = file(" $projectDir /bin/main" )
176
+ }
177
+ // Configuration for the Checkstyle plugin
178
+ // https://docs.gradle.org/current/userguide/checkstyle_plugin.html
179
+ dependencies {
180
+ checkstyle ' com.puppycrawl.tools:checkstyle:10.3.1'
181
+ checkstyle ' com.github.sevntu-checkstyle:sevntu-checks:1.42.0'
182
+ }
57
183
}
58
184
185
+
186
+ checkstyle {
187
+ checkstyleMain. exclude ' **/gsmastub/**'
188
+ }
189
+
190
+
59
191
group = ' org.mifos'
60
192
version = ' 1.0.0-SNAPSHOT'
61
193
sourceCompatibility = JavaVersion . VERSION_17
@@ -78,4 +210,3 @@ publishing {
78
210
tasks. withType(JavaCompile ) {
79
211
options. encoding = ' UTF-8'
80
212
}
81
-
0 commit comments