Skip to content

Commit

Permalink
Merge pull request #85 from kode-konveyor/develop
Browse files Browse the repository at this point in the history
release
  • Loading branch information
magwas authored Jan 27, 2020
2 parents 1ebb7a5 + 08f5975 commit 84799ce
Show file tree
Hide file tree
Showing 96 changed files with 2,894 additions and 962 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target/
.pmd
inputs/
issuesReport.json
javabuild
Expand All @@ -25,5 +26,4 @@ tidyup.zenta.bak
/tidyup/
zentaworkaround
.attach*
.pmd
.pmd

6 changes: 3 additions & 3 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
</arguments>
</buildCommand>
<buildCommand>
<name>net.sourceforge.pmd.eclipse.plugin.pmdBuilder</name>
<name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<name>net.sourceforge.pmd.eclipse.plugin.pmdBuilder</name>
<arguments>
</arguments>
</buildCommand>
Expand Down
9 changes: 9 additions & 0 deletions pmd.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="Kode Konveyor WAR"
xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
<description>WAR project PMD rules of Kode Konveyor</description>
<rule ref="https://raw.githubusercontent.com/kode-konveyor/codingrules/v0.1/pmd/upstream.xml"/>
<rule ref="https://raw.githubusercontent.com/kode-konveyor/codingrules/v0.1/pmd/konveyor.xml"/>
</ruleset>
207 changes: 0 additions & 207 deletions pmd/konveyor.xml

This file was deleted.

11 changes: 0 additions & 11 deletions pmd/main.xml

This file was deleted.

88 changes: 0 additions & 88 deletions pmd/upstream.xml

This file was deleted.

15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.4.9</version>

<dependencies>
<dependency>
<groupId>org.pitest</groupId>
Expand All @@ -94,6 +95,17 @@
</dependencies>

<configuration>
<excludedClasses>
<param>*DTO</param>
<param>*Entity</param>
<param>*Repository</param>
<param>*Exception</param>
<param>*Enum</param>
<param>*Bean</param>
<param>*.SpringConfig</param>
<param>*.WebAppInitializer</param>
<param>*.WebInitializer</param>
</excludedClasses>
<outputFormats>
<outputFormat>XML</outputFormat>
<outputFormat>HTML</outputFormat>
Expand Down Expand Up @@ -229,7 +241,7 @@
<ignoreAnnotations>true</ignoreAnnotations>
<includeTests>true</includeTests>
<rulesets>
<ruleset>pmd/main.xml</ruleset>
<ruleset>pmd.xml</ruleset>
</rulesets>
</configuration>
</plugin>
Expand Down Expand Up @@ -260,6 +272,7 @@
<reportSet>
<id>test-javadoc</id>
<configuration>
<show>private</show>
<doclet>com.github.markusbernhardt.xmldoclet.XmlDoclet</doclet>
<additionalparam>
-d ${project.build.directory}/test
Expand Down
Loading

0 comments on commit 84799ce

Please sign in to comment.