Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

<groupId>org.forgerock.am</groupId>
<artifactId>get-profile-property-auth-tree-node</artifactId>
<version>6.5.0-SNAPSHOT</version>
<version>7.1.0-SNAPSHOT</version>

<name>Get Profile Property Authentication Node</name>
<description>An Authentication Tree Node for ForgeRock's Identity Platform</description>

<properties>
<am.version>6.5.0</am.version>
<am.version>7.1.0</am.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -75,10 +75,21 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>4.2.1</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
import static java.util.Collections.emptyList;
import static java.util.Collections.singleton;
import static java.util.Collections.singletonMap;
import java.util.Optional;

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.entry;
import static org.forgerock.json.JsonValue.field;
Expand Down Expand Up @@ -111,6 +113,6 @@ public void shouldUseArraysForMultivaluedAttributes() throws Exception {

private TreeContext setupTreeContext() {
return new TreeContext(json(object(field(USERNAME, USER), field(REALM, REALM_NAME))),
json(object(field("transient", "content"))), new ExternalRequestContext.Builder().build(), emptyList());
json(object(field("transient", "content"))), new ExternalRequestContext.Builder().build(), emptyList(), Optional.empty());
}
}