forked from javaee-samples/javaee7-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
51 lines (42 loc) · 2.2 KB
/
pom.xml
File metadata and controls
51 lines (42 loc) · 2.2 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.javaee7</groupId>
<artifactId>samples-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.javaee7</groupId>
<artifactId>jaspic</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java EE 7 Sample: jaspic</name>
<modules>
<!-- Not a module with tests, but contains common code for the other modules -->
<module>common</module>
<!-- Tests behavior of authentication involving asynchronous requests -->
<module>async-authentication</module>
<!-- Tests a simple authentication from both public and protected resources -->
<module>basic-authentication</module>
<!-- Tests that an established authenticated identity by JASPIC propagates correctly to the EJB layer -->
<module>ejb-propagation</module>
<!-- Tests that the main methods of JASPIC artifacts like the SAM are called by the container at the right moment -->
<module>lifecycle</module>
<!-- JASPIC is normally stateless but with a new option introduced in JASPIC 1.1 it can semi-transparently
remember an authenticated identity (semi, because the SAM will still be called and has to explicitly
indidate it wants to continue this remembered session). This tests that remembering a session indeed works.
-->
<module>register-session</module>
<!-- Like Servlet filters, a JASPIC SAM for the Servlet Profile can wrap the request and response. This tests that
this indeed happens. -->
<module>wrapping</module>
</modules>
<dependencies>
<dependency>
<groupId>org.javaee7</groupId>
<artifactId>test-utils</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>