File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -32,3 +32,4 @@ VER_JGIT=6.7.0.202309050840-r
32
32
VER_JUNIT =5.10.2
33
33
VER_ASSERTJ =3.26.0
34
34
VER_MOCKITO =5.12.0
35
+ VER_SELFIE =2.2.0
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ dependencies {
13
13
api " org.junit.jupiter:junit-jupiter:${ VER_JUNIT} "
14
14
api " org.assertj:assertj-core:${ VER_ASSERTJ} "
15
15
api " org.mockito:mockito-core:$VER_MOCKITO "
16
+ api " com.diffplug.selfie:selfie-lib:${ VER_SELFIE} "
17
+ api " com.diffplug.selfie:selfie-runner-junit5:${ VER_SELFIE} "
16
18
runtimeOnly " org.junit.platform:junit-platform-launcher"
17
19
18
20
implementation " com.diffplug.durian:durian-io:${ VER_DURIAN} "
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2024 DiffPlug
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ package selfie ;
17
+
18
+ import com .diffplug .selfie .junit5 .SelfieSettingsAPI ;
19
+
20
+ /** https://selfie.dev/jvm/get-started#quickstart */
21
+ public class SelfieSettings extends SelfieSettingsAPI {
22
+ @ Override
23
+ public boolean getJavaDontUseTripleQuoteLiterals () {
24
+ return true ;
25
+ }
26
+ }
You can’t perform that action at this time.
0 commit comments