Skip to content

Commit 87a22bb

Browse files
committed
POM: Add Dependencies
- Add maven-surefire-plugin:3.0.0-M3 - Add junit-jupiter-engine:5.4.0 - compiler.source/target: 1.8
1 parent 8179cc4 commit 87a22bb

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pom.xml

+22
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,38 @@
77
<groupId>co.tunjos.crypto</groupId>
88
<artifactId>java-crypto-utils</artifactId>
99
<version>1.0-SNAPSHOT</version>
10+
11+
<build>
12+
<plugins>
13+
<plugin>
14+
<groupId>org.apache.maven.plugins</groupId>
15+
<artifactId>maven-surefire-plugin</artifactId>
16+
<version>3.0.0-M3</version>
17+
</plugin>
18+
</plugins>
19+
</build>
20+
1021
<dependencies>
1122
<dependency>
1223
<groupId>org.junit.jupiter</groupId>
1324
<artifactId>junit-jupiter-api</artifactId>
1425
<version>5.4.0</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.junit.jupiter</groupId>
30+
<artifactId>junit-jupiter-engine</artifactId>
31+
<version>5.4.0</version>
32+
<scope>test</scope>
1533
</dependency>
1634
<dependency>
1735
<groupId>org.jetbrains</groupId>
1836
<artifactId>annotations</artifactId>
1937
<version>17.0.0</version>
2038
</dependency>
2139
</dependencies>
40+
<properties>
41+
<maven.compiler.source>1.8</maven.compiler.source>
42+
<maven.compiler.target>1.8</maven.compiler.target>
43+
</properties>
2244
</project>

0 commit comments

Comments
 (0)