Skip to content

Commit 9048547

Browse files
committed
Merge branch 'master' into release/16.0.0-SNAPSHOT
2 parents 13dd625 + 9a9a1ac commit 9048547

File tree

6 files changed

+26
-9
lines changed

6 files changed

+26
-9
lines changed

openam-clientsdk/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2011-2016 ForgeRock AS.
16-
* Portions copyright 2023 3A Systems LLC
16+
* Portions copyright 2017-2023 3A Systems LLC
1717
*
1818
-->
1919
<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">
@@ -135,7 +135,7 @@
135135
<include>org.openidentityplatform.commons.i18n-framework:core</include>
136136
<include>org.openidentityplatform.commons.i18n-framework:slf4j</include>
137137
<include>org.openidentityplatform.commons:util</include>
138-
<include>com.google.guava:guava:jar:</include>
138+
<include>com.google.guava:*</include>
139139
<include>org.openidentityplatform.commons.http-framework:core</include>
140140
<include>com.fasterxml.jackson.core:jackson-databind</include>
141141
<include>com.fasterxml.jackson.core:jackson-core</include>

openam-core/src/main/java/com/iplanet/am/util/SystemProperties.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* "Portions Copyrighted [year] [name of copyright owner]"
2424
*
2525
* Portions Copyrighted 2010-2016 ForgeRock AS.
26+
* Portions Copyrighted 2017-2025 3A Systems, LLC
2627
*/
2728
package com.iplanet.am.util;
2829

@@ -48,7 +49,6 @@
4849
import java.util.concurrent.atomic.AtomicReference;
4950

5051
import javax.annotation.Nullable;
51-
import javax.xml.rpc.holders.StringHolder;
5252

5353
import com.google.common.base.Predicate;
5454
import com.google.common.cache.Cache;
@@ -794,4 +794,11 @@ PropertiesHolder putAll(Properties newProperties) {
794794
return new PropertiesHolder(Maps.fromProperties(newProperties));
795795
}
796796
}
797+
798+
private static class StringHolder {
799+
public String value=null;
800+
public StringHolder(String property) {
801+
this.value=property;
802+
}
803+
}
797804
}

openam-ui/openam-ui-ria/Gruntfile.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,7 @@ module.exports = function (grunt) {
374374
"less",
375375
"replace",
376376
"copy:compiled",
377-
"copy:transpiled",
378-
"karma:build"
377+
"copy:transpiled"
379378
]);
380379

381380
grunt.registerTask("dev", ["copy:compose", "babel", "deploy", "watch"]);

openam-ui/openam-ui-ria/package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openam-ui/openam-ui-ria/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"jsdoc": "jsdoc --configure config/jsdoc/configuration.json",
1010
"start": "grunt",
1111
"build:production": "cross-env NODE_ENV=production grunt prod --verbose",
12-
"test": "grunt karma:dev",
12+
"test": "grunt karma:build",
1313
"predeps": "npm run clean:deps -s",
1414
"deps": "ncu -u && mvn clean install",
1515
"postdeps": "npm shrinkwrap --dev"

openam-ui/openam-ui-ria/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,16 @@
328328
<arguments>run build:production -- --target-version=${project.version}</arguments>
329329
</configuration>
330330
</execution>
331+
<execution>
332+
<id>npm-test</id>
333+
<goals>
334+
<goal>npm</goal>
335+
</goals>
336+
<phase>test</phase>
337+
<configuration>
338+
<arguments>run test</arguments>
339+
</configuration>
340+
</execution>
331341
</executions>
332342
</plugin>
333343
<plugin>

0 commit comments

Comments
 (0)