[java-identity-provider COMMIT] in /trunk/idp-consent: .project pom.xml src/main/java/net/ src/main/java/net/shibbole...
noreply at shibboleth.net
noreply at shibboleth.net
Thu Sep 25 18:46:05 EDT 2014
Author: tzeller
Date: Thu Sep 25 18:46:05 2014
New Revision: 6580
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6580&view=rev
Log:
Checkpoint some work on consent.
Added:
trunk/idp-consent/src/main/java/net/
trunk/idp-consent/src/main/java/net/shibboleth/
trunk/idp-consent/src/main/java/net/shibboleth/idp/
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/AttributeConsent.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/context/
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/context/ConsentContext.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/context/package-info.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/AbstractConsentAction.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/ConsentFlowDescriptor.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/InitializeConsentContext.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/package-info.java (with props)
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/package-info.java (with props)
Modified:
trunk/idp-consent/.project
trunk/idp-consent/pom.xml
Modified: trunk/idp-consent/.project
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-consent/.project?rev=6580&r1=6579&r2=6580&view=diff
==============================================================================
Binary files - no diff available.
Modified: trunk/idp-consent/pom.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-consent/pom.xml?rev=6580&r1=6579&r2=6580&view=diff
==============================================================================
--- trunk/idp-consent/pom.xml (original)
+++ trunk/idp-consent/pom.xml Thu Sep 25 18:46:05 2014
@@ -11,16 +11,40 @@
<relativePath>../idp-parent</relativePath>
</parent>
- <name>idp-consent</name>
+ <name>Shibboleth IdP :: Consent</name>
<artifactId>idp-consent</artifactId>
<packaging>jar</packaging>
<dependencies>
<!-- Compile Dependencies -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-attribute-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>idp-profile-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${opensaml.groupId}</groupId>
+ <artifactId>opensaml-storage-api</artifactId>
+ <version>${opensaml.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.json</groupId>
+ <artifactId>javax.json-api</artifactId>
+ </dependency>
<!-- Provided Dependencies -->
<!-- Runtime Dependencies -->
+ <dependency>
+ <groupId>org.glassfish</groupId>
+ <artifactId>javax.json</artifactId>
+ <scope>runtime</scope>
+ </dependency>
<!-- Test Dependencies -->
More information about the commits
mailing list