This is an automated email from the ASF dual-hosted git repository.
mcmellawatt pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new c7f2983 GEODE-6380: Making pmd.gradle more portable (#3194)
c7f2983 is described below
commit c7f2983312bb5929242dacbbb7862a247125e5f5
Author: Ryan McMahon <[email protected]>
AuthorDate: Thu Feb 14 12:07:47 2019 -0800
GEODE-6380: Making pmd.gradle more portable (#3194)
---
gradle/pmd.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/pmd.gradle b/gradle/pmd.gradle
index a20ddf9..a368dc2 100644
--- a/gradle/pmd.gradle
+++ b/gradle/pmd.gradle
@@ -17,7 +17,7 @@
apply plugin: 'pmd'
pmd {
sourceSets = [sourceSets.main]
- ruleSetFiles =
files("${rootDir}/static-analysis/pmd/src/main/resources/geodepmd.xml")
+ ruleSetFiles =
files("${project.projectDir}/../static-analysis/pmd/src/main/resources/geodepmd.xml")
ruleSets = []
}
dependencies {