Skip to content

Commit e619766

Browse files
darxriggsfabienrenaud
authored andcommitted
Cleanup build.gradle
1 parent 7677b18 commit e619766

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
id 'application'
44
id 'com.github.johnrengelman.shadow' version '5.2.0'
5-
id "com.github.ben-manes.versions" version '0.28.0'
5+
id 'com.github.ben-manes.versions' version '0.28.0'
66
}
77

88
group = 'com.github.fabienrenaud'
@@ -83,7 +83,7 @@ dependencies {
8383
implementation group: 'org.sharegov', name: 'mjson', version: '1.4.1'
8484
// underscore-java
8585
implementation group: 'com.github.javadev', name: 'underscore', version: '1.71'
86-
//purejson
86+
// purejson
8787
implementation group: 'io.github.senthilganeshs', name: 'purejson', version: '1.0.1'
8888
// avaje-jsonb
8989
implementation group: 'io.avaje', name: 'avaje-jsonb', version: '0.11'
@@ -115,8 +115,8 @@ test {
115115

116116
task (depsize) {
117117
doLast {
118-
def size = 0;
119-
def formatStr = "%,10.2f"
118+
def size = 0
119+
def formatStr = '%,10.2f'
120120
configurations.default.collect { it.length() / (1024 * 1024) }.each { size += it }
121121

122122
def out = new StringBuffer()
@@ -133,4 +133,3 @@ task (depsize) {
133133
println(out)
134134
}
135135
}
136-

0 commit comments

Comments
 (0)