-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathpom.xml
More file actions
29 lines (29 loc) · 1.19 KB
/
pom.xml
File metadata and controls
29 lines (29 loc) · 1.19 KB
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
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-core</artifactId>
<version>10.9.0-SNAPSHOT</version>
</parent>
<artifactId>wicketstuff-glassfish4-integration</artifactId>
<packaging>jar</packaging>
<name>WicketStuff Glassfish Integration</name>
<description>
Provides custom serializer compatible with Glassfish 4.0. This prevents serialization issues when classes
use cdi injection in the glassfish app server.
</description>
<dependencies>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.main.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<version>8.0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>