Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TeeTime-Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nelson Tavares de Sousa
TeeTime-Framework
Commits
8f95fde4
Commit
8f95fde4
authored
9 years ago
by
Christian Wulf
Browse files
Options
Downloads
Patches
Plain Diff
added pmd dependency to pmd plugin
parent
0b5b6266
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.settings/edu.umd.cs.findbugs.core.prefs
+1
-1
1 addition, 1 deletion
.settings/edu.umd.cs.findbugs.core.prefs
conf/quality-config/pmd-ruleset.xml
+5
-4
5 additions, 4 deletions
conf/quality-config/pmd-ruleset.xml
pom.xml
+39
-33
39 additions, 33 deletions
pom.xml
with
45 additions
and
38 deletions
.settings/edu.umd.cs.findbugs.core.prefs
+
1
−
1
View file @
8f95fde4
#FindBugs User Preferences
#
Wed
Apr 2
2 08:29:19
CEST 2015
#
Tue
Apr 2
8 13:44:32
CEST 2015
detector_threshold=3
effort=max
excludefilter0=.fbExcludeFilterFile|true
...
...
This diff is collapsed.
Click to expand it.
conf/quality-config/pmd-ruleset.xml
+
5
−
4
View file @
8f95fde4
...
...
@@ -43,11 +43,11 @@
<rule
ref=
"rulesets/jsp/basic-jsf.xml"
/>
<rule
ref=
"rulesets/jsp/basic.xml"
/>
<rule
ref=
"rulesets/vm/basic.xml"
/>
<!--
<rule ref="rulesets/vm/basic.xml" />
-->
<rule
ref=
"rulesets/xml/basic.xml"
/>
<!--
<rule ref="rulesets/xml/basic.xml" />
-->
<rule
ref=
"rulesets/xsl/xpath.xml"
/>
<!--
<rule ref="rulesets/xsl/xpath.xml" />
-->
<!-- custom adaptations -->
...
...
@@ -80,6 +80,7 @@
<exclude
name=
"LocalVariableCouldBeFinal"
/>
<exclude
name=
"SimplifyStartsWith"
/>
</rule>
<!-- <rule ref="rulesets/chw/basic.xml" /> -->
</ruleset>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
pom.xml
+
39
−
33
View file @
8f95fde4
...
...
@@ -208,28 +208,28 @@
</plugin>
<!-- Checkstyle -->
<!--
<plugin> -->
<!--
<groupId>org.apache.maven.plugins</groupId> -->
<!--
<artifactId>maven-checkstyle-plugin</artifactId> -->
<!--
<version>2.15</version> -->
<!--
<executions> -->
<!--
<execution> -->
<!--
<phase>test</phase> -->
<!--
<goals> -->
<!--
<goal>check</goal> -->
<!--
</goals> -->
<!--
<configuration> -->
<!--
<configLocation>${project.basedir}/conf/quality-config/cs-conf.xml</configLocation> -->
<!--
<includeTestSourceDirectory>true</includeTestSourceDirectory> -->
<!--
<encoding>UTF-8</encoding> -->
<!--
<consoleOutput>true</consoleOutput> -->
<!--
<failsOnError>false</failsOnError> -->
<!--
<failOnViolation>false</failOnViolation> -->
<!--
<linkXRef>false</linkXRef> -->
<!--
</configuration> -->
<!--
</execution> -->
<!--
</executions> -->
<!--
</plugin> -->
<!-- <plugin> -->
<!-- <groupId>org.apache.maven.plugins</groupId> -->
<!-- <artifactId>maven-checkstyle-plugin</artifactId> -->
<!-- <version>2.15</version> -->
<!-- <executions> -->
<!-- <execution> -->
<!-- <phase>test</phase> -->
<!-- <goals> -->
<!-- <goal>check</goal> -->
<!-- </goals> -->
<!-- <configuration> -->
<!-- <configLocation>${project.basedir}/conf/quality-config/cs-conf.xml</configLocation> -->
<!-- <includeTestSourceDirectory>true</includeTestSourceDirectory> -->
<!-- <encoding>UTF-8</encoding> -->
<!-- <consoleOutput>true</consoleOutput> -->
<!-- <failsOnError>false</failsOnError> -->
<!-- <failOnViolation>false</failOnViolation> -->
<!-- <linkXRef>false</linkXRef> -->
<!-- </configuration> -->
<!-- </execution> -->
<!-- </executions> -->
<!-- </plugin> -->
<!-- Findbugs -->
<plugin>
...
...
@@ -258,7 +258,13 @@
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-pmd-plugin
</artifactId>
<version>
3.4
</version>
<dependencies>
<dependency>
<groupId>
de.chw
</groupId>
<artifactId>
pmd.ruleset
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</dependency>
</dependencies>
<configuration>
<rulesets>
<ruleset>
${project.basedir}/conf/quality-config/pmd-ruleset.xml
</ruleset>
...
...
@@ -368,26 +374,26 @@
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.10.3
</version>
<configuration>
<destDir>
${javadocOutputDir}
</destDir>
</configuration>
</plugin>
<!-- Findbugs -->
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
<version>
3.0.1
</version>
</plugin>
<!-- PMD -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-pmd-plugin
</artifactId>
<version>
3.4
</version>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.10.3
</version>
<configuration>
<destDir>
${javadocOutputDir}
</destDir>
</configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
cobertura-maven-plugin
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment