mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
/**
|
|
* @name MavenPoms
|
|
* @description Verify that Maven Poms are correctly identified.
|
|
*/
|
|
|
|
import java
|
|
import semmle.code.xml.MavenPom
|
|
|
|
from Pom p
|
|
select p, p.getGroup().getValue(), p.getArtifact().getValue()
|