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>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-webapps-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>
|
|
|
|
<artifactId>test-jaas-webapp</artifactId>
|
|
|
|
<name>Jetty Tests :: WebApp :: JAAS</name>
|
|
|
|
<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>
|
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<configuration>
|
2019-11-14 15:49:36 -05:00
|
|
|
<scan>10</scan>
|
2012-10-29 03:21:37 -04:00
|
|
|
<systemProperties>
|
2019-06-24 11:42:39 -04:00
|
|
|
<!-- 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>
|
2019-06-24 11:42:39 -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>
|
2012-10-29 03:21:37 -04:00
|
|
|
</systemProperties>
|
2019-11-14 15:49:36 -05:00
|
|
|
<webApp>
|
2012-10-29 03:21:37 -04:00
|
|
|
<contextPath>/test-jaas</contextPath>
|
|
|
|
<securityHandler implementation="org.eclipse.jetty.security.ConstraintSecurityHandler">
|
2012-11-18 20:21:01 -05:00
|
|
|
<loginService implementation="org.eclipse.jetty.jaas.JAASLoginService">
|
2019-06-24 11:42:39 -04:00
|
|
|
<name>Test JAAS Realm</name>
|
|
|
|
<loginModuleName>xyz</loginModuleName>
|
2012-10-29 03:21:37 -04:00
|
|
|
</loginService>
|
|
|
|
</securityHandler>
|
2019-11-14 15:49:36 -05:00
|
|
|
</webApp>
|
2012-10-29 03:21:37 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${basedir}/src/main/assembly/config.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|