Skip to content

Commit 7de8c3c

Browse files
authored
Chore: remove assertj from parent pom compile dependencies (#1014)
1 parent bc0faa7 commit 7de8c3c

29 files changed

Lines changed: 163 additions & 25 deletions

File tree

openam-audit/openam-audit-configuration/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2014-2016 ForgeRock AS.
16-
* Portions copyright 2023-2025 3A Systems LLC
16+
* Portions copyright 2023-2026 3A Systems LLC
1717
-->
1818
<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/xsd/maven-4.0.0.xsd">
1919
<parent>
@@ -96,6 +96,11 @@
9696
<artifactId>testng</artifactId>
9797
<scope>test</scope>
9898
</dependency>
99+
<dependency>
100+
<groupId>org.assertj</groupId>
101+
<artifactId>assertj-core</artifactId>
102+
<scope>test</scope>
103+
</dependency>
99104
</dependencies>
100105

101106
</project>

openam-audit/openam-audit-context/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2014-2016 ForgeRock AS.
16-
* Portions Copyrighted 2025 3A Systems LLC.
16+
* Portions Copyrighted 2025-2026 3A Systems LLC.
1717
-->
1818
<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/xsd/maven-4.0.0.xsd">
1919
<parent>
@@ -63,6 +63,11 @@
6363
<artifactId>testng</artifactId>
6464
<scope>test</scope>
6565
</dependency>
66+
<dependency>
67+
<groupId>org.assertj</groupId>
68+
<artifactId>assertj-core</artifactId>
69+
<scope>test</scope>
70+
</dependency>
6671
</dependencies>
6772

6873
</project>

openam-authentication/openam-auth-fr-oath/pom.xml

Lines changed: 6 additions & 1 deletion
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 Copyrighted 2025 3A Systems LLC.
16+
* Portions Copyrighted 2025-2026 3A Systems LLC.
1717
-->
1818
<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">
1919
<modelVersion>4.0.0</modelVersion>
@@ -55,5 +55,10 @@
5555
<artifactId>testng</artifactId>
5656
<scope>test</scope>
5757
</dependency>
58+
<dependency>
59+
<groupId>org.assertj</groupId>
60+
<artifactId>assertj-core</artifactId>
61+
<scope>test</scope>
62+
</dependency>
5863
</dependencies>
5964
</project>

openam-authentication/openam-auth-oidc/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2013-2016 ForgeRock AS.
16-
* Portions copyright 2025 3A Systems LLC.
16+
* Portions copyright 2025-2026 3A Systems LLC.
1717
-->
1818
<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">
1919
<modelVersion>4.0.0</modelVersion>
@@ -54,6 +54,11 @@
5454
<artifactId>testng</artifactId>
5555
<scope>test</scope>
5656
</dependency>
57+
<dependency>
58+
<groupId>org.assertj</groupId>
59+
<artifactId>assertj-core</artifactId>
60+
<scope>test</scope>
61+
</dependency>
5762
<dependency>
5863
<groupId>org.mockito</groupId>
5964
<artifactId>mockito-core</artifactId>

openam-authentication/openam-auth-persistentcookie/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2013-2016 ForgeRock AS.
16-
* Portions copyright 2025 3A Systems LLC.
16+
* Portions copyright 2025-2026 3A Systems LLC.
1717
-->
1818
<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">
1919
<modelVersion>4.0.0</modelVersion>
@@ -50,6 +50,11 @@
5050
<artifactId>testng</artifactId>
5151
<scope>test</scope>
5252
</dependency>
53+
<dependency>
54+
<groupId>org.assertj</groupId>
55+
<artifactId>assertj-core</artifactId>
56+
<scope>test</scope>
57+
</dependency>
5358
<dependency>
5459
<groupId>org.mockito</groupId>
5560
<artifactId>mockito-core</artifactId>

openam-authentication/openam-auth-push/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2016 ForgeRock AS.
16-
* Portions copyright 2025 3A Systems LLC.
16+
* Portions copyright 2025-2026 3A Systems LLC.
1717
-->
1818
<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/xsd/maven-4.0.0.xsd">
1919
<parent>
@@ -65,6 +65,11 @@
6565
<artifactId>testng</artifactId>
6666
<scope>test</scope>
6767
</dependency>
68+
<dependency>
69+
<groupId>org.assertj</groupId>
70+
<artifactId>assertj-core</artifactId>
71+
<scope>test</scope>
72+
</dependency>
6873
</dependencies>
6974

7075
</project>

openam-authentication/openam-auth-saml2/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2015-2016 ForgeRock AS.
16-
* Portions copyright 2025 3A Systems LLC.
16+
* Portions copyright 2025-2026 3A Systems LLC.
1717
-->
1818
<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/xsd/maven-4.0.0.xsd">
1919
<parent>
@@ -61,5 +61,10 @@
6161
<artifactId>testng</artifactId>
6262
<scope>test</scope>
6363
</dependency>
64+
<dependency>
65+
<groupId>org.assertj</groupId>
66+
<artifactId>assertj-core</artifactId>
67+
<scope>test</scope>
68+
</dependency>
6469
</dependencies>
6570
</project>

openam-console/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,5 +208,10 @@
208208
<artifactId>testng</artifactId>
209209
<scope>test</scope>
210210
</dependency>
211+
<dependency>
212+
<groupId>org.assertj</groupId>
213+
<artifactId>assertj-core</artifactId>
214+
<scope>test</scope>
215+
</dependency>
211216
</dependencies>
212217
</project>

openam-core/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,11 @@
407407
<artifactId>testng</artifactId>
408408
<scope>test</scope>
409409
</dependency>
410+
<dependency>
411+
<groupId>org.assertj</groupId>
412+
<artifactId>assertj-core</artifactId>
413+
<scope>test</scope>
414+
</dependency>
410415
<dependency>
411416
<groupId>org.mockito</groupId>
412417
<artifactId>mockito-core</artifactId>

openam-datastore/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2011-2016 ForgeRock AS.
16+
* Portions copyright 2018-2026 3A Systems, LLC
1617
-->
1718
<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">
1819
<modelVersion>4.0.0</modelVersion>
@@ -43,6 +44,11 @@
4344
<artifactId>testng</artifactId>
4445
<scope>test</scope>
4546
</dependency>
47+
<dependency>
48+
<groupId>org.assertj</groupId>
49+
<artifactId>assertj-core</artifactId>
50+
<scope>test</scope>
51+
</dependency>
4652
<dependency>
4753
<groupId>org.powermock</groupId>
4854
<artifactId>powermock-api-mockito2</artifactId>

0 commit comments

Comments
 (0)