pom.xml

changeset 13
5e69b1bb707f
parent 9
576e7a2861ae
     1.1 --- a/pom.xml	Mon Jul 27 10:56:17 2020 +0200
     1.2 +++ b/pom.xml	Mon Jul 27 11:56:41 2020 +0200
     1.3 @@ -5,17 +5,30 @@
     1.4      <artifactId>sudoku</artifactId>
     1.5      <version>1.0</version>
     1.6  
     1.7 +    <properties>
     1.8 +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     1.9 +        <maven.compiler.source>11</maven.compiler.source>
    1.10 +        <maven.compiler.target>11</maven.compiler.target>
    1.11 +    </properties>
    1.12 +
    1.13 +    <dependencies>
    1.14 +        <dependency>
    1.15 +            <groupId>org.junit.jupiter</groupId>
    1.16 +            <artifactId>junit-jupiter</artifactId>
    1.17 +            <version>5.6.2</version>
    1.18 +            <scope>test</scope>
    1.19 +        </dependency>
    1.20 +        <dependency>
    1.21 +            <groupId>org.junit.jupiter</groupId>
    1.22 +            <artifactId>junit-jupiter-params</artifactId>
    1.23 +            <version>5.6.2</version>
    1.24 +            <scope>test</scope>
    1.25 +        </dependency>
    1.26 +    </dependencies>
    1.27 +
    1.28      <build>
    1.29          <plugins>
    1.30              <plugin>
    1.31 -                <artifactId>maven-compiler-plugin</artifactId>
    1.32 -                <version>3.8.1</version>
    1.33 -                <configuration>
    1.34 -                    <source>1.8</source>
    1.35 -                    <target>1.8</target>
    1.36 -                </configuration>
    1.37 -            </plugin>
    1.38 -            <plugin>
    1.39                  <groupId>org.apache.maven.plugins</groupId>
    1.40                  <artifactId>maven-jar-plugin</artifactId>
    1.41                  <version>3.0.2</version>

mercurial