We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ae2ab commit 66f6242Copy full SHA for 66f6242
.idea/workspace.xml
pom.xml
@@ -17,8 +17,31 @@
17
</dependencies>
18
19
<properties>
20
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
<maven.compiler.source>11</maven.compiler.source>
22
<maven.compiler.target>11</maven.compiler.target>
23
</properties>
24
25
+ <build>
26
+ <pluginManagement>
27
+ <plugins>
28
+ <plugin>
29
+ <groupId>org.apache.maven.plugins</groupId>
30
+ <artifactId>maven-compiler-plugin</artifactId>
31
+ <version>3.9.0</version>
32
+ <configuration>
33
+ <source>11</source>
34
+ <target>11</target>
35
+ </configuration>
36
+ </plugin>
37
38
39
+ <artifactId>maven-surefire-plugin</artifactId>
40
+ <version>2.22.2</version>
41
42
+
43
+ </plugins>
44
+ </pluginManagement>
45
+ </build>
46
47
</project>
0 commit comments