Skip to content

Commit b63f80d

Browse files
committedNov 8, 2024··
no parent
1 parent 54ec9d6 commit b63f80d

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed
 

‎src/it/xerces/pom.xml

+18-5
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
3030
-->
3131
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3232
<modelVersion>4.0.0</modelVersion>
33-
<parent>
34-
<groupId>com.jcabi</groupId>
35-
<artifactId>parent</artifactId>
36-
<version>0.68.0</version>
37-
</parent>
3833
<groupId>org.xembly</groupId>
3934
<artifactId>xerces</artifactId>
4035
<version>1.0-SNAPSHOT</version>
36+
<properties>
37+
<maven.compiler.source>11</maven.compiler.source>
38+
<maven.compiler.target>11</maven.compiler.target>
39+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40+
</properties>
4141
<dependencies>
4242
<dependency>
4343
<groupId>@project.groupId@</groupId>
@@ -67,9 +67,22 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
6767
<artifactId>jcabi-xml</artifactId>
6868
<version>0.30.0</version>
6969
</dependency>
70+
<dependency>
71+
<groupId>org.junit.jupiter</groupId>
72+
<artifactId>junit-jupiter-engine</artifactId>
73+
<version>5.11.3</version>
74+
<scope>test</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.junit.jupiter</groupId>
78+
<artifactId>junit-jupiter-api</artifactId>
79+
<version>5.11.3</version>
80+
<scope>test</scope>
81+
</dependency>
7082
<dependency>
7183
<groupId>com.jcabi</groupId>
7284
<artifactId>jcabi-matchers</artifactId>
85+
<version>1.7.0</version>
7386
<scope>test</scope>
7487
</dependency>
7588
</dependencies>

0 commit comments

Comments
 (0)
Please sign in to comment.