File tree 2 files changed +2
-14
lines changed
2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
}
11
11
12
12
// Keep this in sync with src/Constants.ts > PMD7_VERSION
13
- var pmd7Version = " 7.9 .0"
13
+ var pmd7Version = " 7.10 .0"
14
14
15
15
val pmdDist7Dir = " $buildDir /../../dist/pmd7"
16
16
@@ -26,18 +26,6 @@ dependencies {
26
26
implementation(" net.sourceforge.pmd:pmd-xml:$pmd7Version " )
27
27
}
28
28
29
- // TEMPORARY - FOR SOME REASON WHEN UPGRADING TO PMD 7.9.0, THE TRANSITIVE DEPENDENCY:
30
- // io.github.apex-dev-tools:apex-parser
31
- // IS GETTING PULLED IN AS 4.3.1 INSTEAD OF THE LISTED 4.3.0 AND IT SEEMS TO HAVE A BUG: A MISSING DEPENDENCY LISTED.
32
- // SO WE SHOULD FORCE 4.3.0 TO GET PULLED IN INSTEAD UNTIL THIS IS FIXED.
33
- // See https://github.com/pmd/pmd/issues/5456
34
- // TODO: As soon as the pmd folks fix this ^... we should remove this workaround:
35
- configurations.all {
36
- resolutionStrategy {
37
- force(" io.github.apex-dev-tools:apex-parser:4.3.0" )
38
- }
39
- }
40
-
41
29
tasks.register<Copy >(" copyDependencies" ) {
42
30
from(configurations.runtimeClasspath)
43
31
into(" $pmdDist7Dir /lib" )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import os = require('os');
2
2
import path = require( 'path' ) ;
3
3
4
4
// Keep this in sync with <repoRoot>/pmd7/build.gradle.kts > pmd7Version
5
- export const PMD7_VERSION = '7.9 .0' ;
5
+ export const PMD7_VERSION = '7.10 .0' ;
6
6
7
7
export const PMD_APPEXCHANGE_RULES_VERSION = '0.16' ;
8
8
You can’t perform that action at this time.
0 commit comments