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

Fix single weblogic rule #54

Merged
merged 1 commit into from
Jul 30, 2024
Merged
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
2 changes: 1 addition & 1 deletion resources/rulesets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ items:
dependencies:
- 10667615-e067-45b4-a925-563a79ea0949
- 1b2a0eef-511c-4c07-a36a-d301b15d8207
checksum: 07b96755ed1dab1b3ad68ea91eb9c32582d82c977e3b1f502b1dd7e49bec7f94
checksum: 75ccd0ab478914359cd502bbed87938cf69b61c3bb0b8b8e760a1e24dcd52d87
- uuid: 3c471738-dfcf-46e8-b803-df07c304acc7
name: eap8/eap7
description: This ruleset provides analysis of Java EE applications that need to change certain CDI-related method calls.
Expand Down
13 changes: 7 additions & 6 deletions resources/rulesets/eap7/137-weblogic.windup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,13 @@
```
ruleID: weblogic-eap7-08000
when:
java.referenced:
or:
- location: METHOD_CALL
pattern: weblogic.transaction.ClientTxHelper.getTransactionManager(*)
- location: METHOD_CALL
pattern: weblogic.transaction.TxHelper.getTransactionManager(*)
or:
- java.referenced:
location: METHOD_CALL
pattern: weblogic.transaction.ClientTxHelper.getTransactionManager(*)
- java.referenced:
location: METHOD_CALL
pattern: weblogic.transaction.TxHelper.getTransactionManager(*)
- category: mandatory
customVariables: []
description: WebLogic proprietary Clob JDBC object (OracleThinClob)
Expand Down
Loading