-
Notifications
You must be signed in to change notification settings - Fork 296
/
Copy pathpom.xml
43 lines (36 loc) · 1.37 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-core</artifactId>
<version>10.4.0-SNAPSHOT</version>
</parent>
<artifactId>minis-parent</artifactId>
<packaging>pom</packaging>
<name>Minis - Parent</name>
<description>
WicketStuff Minis is a collection of assorted components and
behaviors that are too small to warrant their own project. The
actual project is the child project "minis". This is just the parent
for the build of minis and minis-examples.
</description>
<modules>
<module>minis</module>
<module>minis-examples</module>
</modules>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>
</project>