Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(config-api): replacing testing framework to TestNG #10417

Open
wants to merge 66 commits into
base: main
Choose a base branch
from

feat(config-api): testng framework wip

2b4a01d
Select commit
Loading
Failed to load commit list.
Open

feat(config-api): replacing testing framework to TestNG #10417

feat(config-api): testng framework wip
2b4a01d
Select commit
Loading
Failed to load commit list.
DryRunSecurity / Sensitive Files Analyzer succeeded Dec 27, 2024 in 3s

DryRun Security

Details

Sensitive Files Analyzer Findings: 3 detected

⚠️ Potential Sensitive File jans-config-api/common/pom.xml (click for details)
Type Potential Sensitive File
Description Java applications manage their dependencies through their pom.xml. A change in this file may indicate an addition of a library/dependency which could introduce additional risk to the application either through vulnerable code, expansion of the application's attack surface via additional routes, or malicious code.
Filename jans-config-api/common/pom.xml
CodeLink
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
⚠️ Potential Sensitive File jans-config-api/plugins/admin-ui-plugin/pom.xml (click for details)
Type Potential Sensitive File
Description Java applications manage their dependencies through their pom.xml. A change in this file may indicate an addition of a library/dependency which could introduce additional risk to the application either through vulnerable code, expansion of the application's attack surface via additional routes, or malicious code.
Filename jans-config-api/plugins/admin-ui-plugin/pom.xml
CodeLink
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
⚠️ Potential Sensitive File jans-config-api/plugins/fido2-plugin/pom.xml (click for details)
Type Potential Sensitive File
Description Java applications manage their dependencies through their pom.xml. A change in this file may indicate an addition of a library/dependency which could introduce additional risk to the application either through vulnerable code, expansion of the application's attack surface via additional routes, or malicious code.
Filename jans-config-api/plugins/fido2-plugin/pom.xml
CodeLink
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<!-- Swagger -->