We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c44ca commit 916fd91Copy full SHA for 916fd91
2 files changed
.gitignore
@@ -9,3 +9,5 @@ target
9
# Mac OS System
10
.DS_Store*
11
._*
12
+
13
+.vscode
pom.xml
@@ -27,6 +27,17 @@
27
<artifactId>javafx-swing</artifactId>
28
<version>20-ea+3</version>
29
</dependency>
30
+ <dependency>
31
+ <groupId>org.mockito</groupId>
32
+ <artifactId>mockito-core</artifactId>
33
+ <version>3.12.4</version> <!-- Use the latest version available -->
34
+ <scope>test</scope>
35
+ </dependency>
36
37
+ <groupId>org.pitest</groupId>
38
+ <artifactId>pitest-maven</artifactId>
39
+ <version>1.9.11</version>
40
41
</dependencies>
42
<build>
43
<plugins>
0 commit comments