2012-10-29 03:21:37 -04:00
|
|
|
<?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>
|
2020-09-23 14:35:19 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demos-parent</artifactId>
|
2020-07-10 03:38:29 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2012-10-29 03:21:37 -04:00
|
|
|
</parent>
|
2020-09-23 14:35:19 -04:00
|
|
|
<artifactId>demo-jaas-webapp</artifactId>
|
2020-09-29 12:37:22 -04:00
|
|
|
<name>Demo :: JAAS :: WebApp</name>
|
2012-10-29 03:21:37 -04:00
|
|
|
<packaging>war</packaging>
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.jaas</bundle-symbolic-name>
|
|
|
|
</properties>
|
2012-10-29 03:21:37 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-09-21 14:57:23 -04:00
|
|
|
<!-- DEMO Project, Must Deploy -->
|
|
|
|
<skip>false</skip>
|
2012-10-29 03:21:37 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-09-21 14:57:23 -04:00
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<scan>10</scan>
|
|
|
|
<systemProperties>
|
|
|
|
<!-- This is for convenience so that the src/etc/login.conf file can stay unmodified when copied to $jetty.home/etc directory -->
|
2019-11-14 15:49:36 -05:00
|
|
|
<jetty.base>${basedir}/src/main/config/demo-base</jetty.base>
|
2020-09-21 14:57:23 -04:00
|
|
|
<!-- Mandatory. This system property tells JAAS where to find the login module configuration file -->
|
2019-11-14 15:49:36 -05:00
|
|
|
<java.security.auth.login.config>${basedir}/src/main/config/demo-base/etc/login.conf</java.security.auth.login.config>
|
2020-09-21 14:57:23 -04:00
|
|
|
</systemProperties>
|
|
|
|
<webApp>
|
|
|
|
<contextPath>/test-jaas</contextPath>
|
|
|
|
<securityHandler implementation="org.eclipse.jetty.security.ConstraintSecurityHandler">
|
|
|
|
<loginService implementation="org.eclipse.jetty.jaas.JAASLoginService">
|
|
|
|
<name>Test JAAS Realm</name>
|
|
|
|
<loginModuleName>xyz</loginModuleName>
|
|
|
|
</loginService>
|
|
|
|
</securityHandler>
|
|
|
|
</webApp>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2012-10-29 03:21:37 -04:00
|
|
|
</build>
|
|
|
|
</project>
|