3 |
3 |
4 <groupId>de.uapcore</groupId> |
4 <groupId>de.uapcore</groupId> |
5 <artifactId>sudoku</artifactId> |
5 <artifactId>sudoku</artifactId> |
6 <version>1.0</version> |
6 <version>1.0</version> |
7 |
7 |
|
8 <properties> |
|
9 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
10 <maven.compiler.source>11</maven.compiler.source> |
|
11 <maven.compiler.target>11</maven.compiler.target> |
|
12 </properties> |
|
13 |
|
14 <dependencies> |
|
15 <dependency> |
|
16 <groupId>org.junit.jupiter</groupId> |
|
17 <artifactId>junit-jupiter</artifactId> |
|
18 <version>5.6.2</version> |
|
19 <scope>test</scope> |
|
20 </dependency> |
|
21 <dependency> |
|
22 <groupId>org.junit.jupiter</groupId> |
|
23 <artifactId>junit-jupiter-params</artifactId> |
|
24 <version>5.6.2</version> |
|
25 <scope>test</scope> |
|
26 </dependency> |
|
27 </dependencies> |
|
28 |
8 <build> |
29 <build> |
9 <plugins> |
30 <plugins> |
10 <plugin> |
|
11 <artifactId>maven-compiler-plugin</artifactId> |
|
12 <version>3.8.1</version> |
|
13 <configuration> |
|
14 <source>1.8</source> |
|
15 <target>1.8</target> |
|
16 </configuration> |
|
17 </plugin> |
|
18 <plugin> |
31 <plugin> |
19 <groupId>org.apache.maven.plugins</groupId> |
32 <groupId>org.apache.maven.plugins</groupId> |
20 <artifactId>maven-jar-plugin</artifactId> |
33 <artifactId>maven-jar-plugin</artifactId> |
21 <version>3.0.2</version> |
34 <version>3.0.2</version> |
22 <configuration> |
35 <configuration> |