[utilities COMMIT] in /jetty9-dta-ssl/trunk: pom.xml src/main/java/net/ src/main/java/net/shibboleth/ src/main/java/n...
noreply at shibboleth.net
noreply at shibboleth.net
Wed May 1 19:29:32 EDT 2013
Author: tzeller
Date: Wed May 1 19:29:32 2013
New Revision: 396
URL: http://svn.shibboleth.net/view/utilities?rev=396&view=rev
Log:
Port from jetty7-dta-ssl to jetty9.
Added:
jetty9-dta-ssl/trunk/src/main/java/net/
jetty9-dta-ssl/trunk/src/main/java/net/shibboleth/
jetty9-dta-ssl/trunk/src/main/java/net/shibboleth/utilities/
jetty9-dta-ssl/trunk/src/main/java/net/shibboleth/utilities/jetty9/
jetty9-dta-ssl/trunk/src/main/java/net/shibboleth/utilities/jetty9/DelegateToApplicationSslContextFactory.java (with props)
jetty9-dta-ssl/trunk/src/main/java/net/shibboleth/utilities/jetty9/package-info.java (with props)
Modified:
jetty9-dta-ssl/trunk/pom.xml
Modified: jetty9-dta-ssl/trunk/pom.xml
URL: http://svn.shibboleth.net/view/utilities/jetty9-dta-ssl/trunk/pom.xml?rev=396&r1=395&r2=396&view=diff
==============================================================================
--- jetty9-dta-ssl/trunk/pom.xml (original)
+++ jetty9-dta-ssl/trunk/pom.xml Wed May 1 19:29:32 2013
@@ -1,6 +1,6 @@
<?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">
+<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>
@@ -10,15 +10,62 @@
<version>TRUNK-SNAPSHOT</version>
</parent>
- <name>jetty9-dta-ssl</name>
<groupId>net.shibboleth.utilities.jetty9</groupId>
<artifactId>jetty9-dta-ssl</artifactId>
<packaging>jar</packaging>
+
+ <name>Jetty9 Delegate To Application SSL Connector</name>
+ <description>
+ This is a simple extension to SslContextFactory that supports
+ client cert authentication but delegates all of the trust verification
+ of the certificate to the application that received the request.
+
+ PLEASE READ THE ABOVE AGAIN. Use of this plugin with an application that does not
+ validate the trustworthiness of a provided client certificate will lead to insecure code.
+ </description>
+
+ <properties>
+ <svn.relative.location>utilities/jetty9-dta-ssl</svn.relative.location>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>shib-release</id>
+ <url>https://shibboleth.net/nexus/content/groups/public</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>shib-snapshot</id>
+ <url>https://shibboleth.net/nexus/content/repositories/snapshots</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+
+ <!-- TODO Jetty SNAPSHOT repository, to be removed post-9.0.3 release. -->
+ <repository>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>sonatype-snapshots</id>
+ <name>Sonatype Jetty Snapshots</name>
+ <url>http://oss.sonatype.org/content/groups/jetty</url>
+ </repository>
+
+ </repositories>
<dependencies>
<!-- Compile Dependencies -->
<!-- Provided Dependencies -->
+ <dependency>
+ <groupId>${jetty.groupId}</groupId>
+ <artifactId>jetty-server</artifactId>
+ <version>${jetty.version}</version>
+ <scope>provided</scope>
+ </dependency>
<!-- Runtime Dependencies -->
@@ -26,5 +73,5 @@
<!-- Managed Dependencies -->
</dependencies>
-
+
</project>
More information about the commits
mailing list