File tree Expand file tree Collapse file tree 9 files changed +13
-12
lines changed
src/main/java/io/substrait Expand file tree Collapse file tree 9 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
8
8
id(" java" )
9
9
id(" idea" )
10
10
id(" com.github.vlsi.gradle-extensions" ) version " 1.74"
11
- id(" com.diffplug.spotless" ) version " 6.19 .0"
11
+ id(" com.diffplug.spotless" ) version " 7.1 .0"
12
12
id(" org.jreleaser" ) version " 1.18.0" apply false
13
13
}
14
14
@@ -55,6 +55,7 @@ allprojects {
55
55
googleJavaFormat()
56
56
removeUnusedImports()
57
57
trimTrailingWhitespace()
58
+ removeWildcardImports()
58
59
}
59
60
}
60
61
}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
12
12
id(" idea" )
13
13
id(" antlr" )
14
14
id(" com.google.protobuf" ) version " 0.9.4"
15
- id(" com.diffplug.spotless" ) version " 6.19 .0"
15
+ id(" com.diffplug.spotless" ) version " 7.1 .0"
16
16
id(" com.gradleup.shadow" ) version " 8.3.6"
17
17
id(" org.jreleaser" )
18
18
}
@@ -261,7 +261,7 @@ project.configure<IdeaModel> {
261
261
generatedSourceDirs.addAll(
262
262
listOf (
263
263
file(" build/generated/sources/antlr/main" ),
264
- file(" build/generated/source/proto/main/java" )
264
+ file(" build/generated/source/proto/main/java" ),
265
265
)
266
266
)
267
267
}
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ public Type visit(Type.Struct type) throws RuntimeException {
258
258
}
259
259
}
260
260
261
- // TODO enum.
261
+ // TODO enum.
262
262
case ENUM :
263
263
throw new UnsupportedOperationException ("Unsupported type: " + expr .getRexTypeCase ());
264
264
default :
Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ private DerivationExpression.BinaryOp.BinaryOpType getDerivationOpType(
52
52
return DerivationExpression .BinaryOp .BinaryOpType .BINARY_OP_TYPE_MAX ;
53
53
case LT :
54
54
return DerivationExpression .BinaryOp .BinaryOpType .BINARY_OP_TYPE_LESS_THAN ;
55
- // case LTE -> DerivationExpression.BinaryOp.BinaryOpType.BINARY_OP_TYPE_LESS_THAN;
55
+ // case LTE -> DerivationExpression.BinaryOp.BinaryOpType.BINARY_OP_TYPE_LESS_THAN;
56
56
case GT :
57
57
return DerivationExpression .BinaryOp .BinaryOpType .BINARY_OP_TYPE_GREATER_THAN ;
58
- // case GTE -> DerivationExpression.BinaryOp.BinaryOpType.BINARY_OP_TYPE_MINUS;
59
- // case NOT_EQ -> DerivationExpression.BinaryOp.BinaryOpType.BINARY_OP_TYPE_EQ;
58
+ // case GTE -> DerivationExpression.BinaryOp.BinaryOpType.BINARY_OP_TYPE_MINUS;
59
+ // case NOT_EQ -> DerivationExpression.BinaryOp.BinaryOpType.BINARY_OP_TYPE_EQ;
60
60
case EQ :
61
61
return DerivationExpression .BinaryOp .BinaryOpType .BINARY_OP_TYPE_EQUALS ;
62
62
case COVERS :
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
// Apply the application plugin to add support for building a CLI application in Java.
3
3
id(" java" )
4
- id(" com.diffplug.spotless" ) version " 6.19 .0"
4
+ id(" com.diffplug.spotless" ) version " 7.1 .0"
5
5
}
6
6
7
7
repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ plugins {
2
2
id(" java" )
3
3
id(" idea" )
4
4
id(" com.palantir.graal" ) version " 0.10.0"
5
- id(" com.diffplug.spotless" ) version " 6.19 .0"
5
+ id(" com.diffplug.spotless" ) version " 7.1 .0"
6
6
}
7
7
8
8
java {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
signing
6
6
id(" java-library" )
7
7
id(" idea" )
8
- id(" com.diffplug.spotless" ) version " 6.19 .0"
8
+ id(" com.diffplug.spotless" ) version " 7.1 .0"
9
9
id(" com.gradleup.shadow" ) version " 8.3.6"
10
10
id(" com.google.protobuf" ) version " 0.9.4"
11
11
id(" org.jreleaser" )
Original file line number Diff line number Diff line change 1
1
runner.dialect = scala212
2
2
3
3
# Version is required to make sure IntelliJ picks the right version
4
- version = 3.7 . 3
4
+ version = 3.8 . 1
5
5
preset = default
6
6
7
7
# Max column
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
4
4
id(" java" )
5
5
id(" scala" )
6
6
id(" idea" )
7
- id(" com.diffplug.spotless" ) version " 6.19 .0"
7
+ id(" com.diffplug.spotless" ) version " 7.1 .0"
8
8
id(" org.jreleaser" )
9
9
}
10
10
You can’t perform that action at this time.
0 commit comments