File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
java/ql/src/semmle/code/xml Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -428,11 +428,21 @@ class MavenRepoJar extends File {
428
428
)
429
429
}
430
430
431
+ /**
432
+ * DEPRECATED: name changed to `getGroupId` for consistent use of camel-case.
433
+ */
434
+ deprecated string getGroupID ( ) { result = getGroupId ( ) }
435
+
431
436
/**
432
437
* Gets the `artifactId` of this jar.
433
438
*/
434
439
string getArtifactId ( ) { result = getParentContainer ( ) .getParentContainer ( ) .getBaseName ( ) }
435
440
441
+ /**
442
+ * DEPRECATED: name changed to `getArtifactId` for consistent casing and consistent spelling with Maven.
443
+ */
444
+ deprecated string getArtefactID ( ) { result = getArtifactId ( ) }
445
+
436
446
/**
437
447
* Gets the artifact version string of this jar.
438
448
*/
@@ -446,6 +456,11 @@ class MavenRepoJar extends File {
446
456
pom .getArtifact ( ) .getValue ( ) = getArtifactId ( )
447
457
}
448
458
459
+ /**
460
+ * DEPRECATED: name changed to `artifactMatches` for consistent spelling with Maven.
461
+ */
462
+ deprecated predicate artefactMatches ( ProtoPom pom ) { artifactMatches ( pom ) }
463
+
449
464
/**
450
465
* Holds if this jar is both an artifact for the POM, and has a version string that matches the POM
451
466
* version string. Only soft and hard version matches are supported.
You can’t perform that action at this time.
0 commit comments