Skip to content

Commit

Permalink
Merge a878d17 into 358f760
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkravin committed Aug 27, 2014
2 parents 358f760 + a878d17 commit edc15ed
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions sevntu-checks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,31 @@
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9</version>
<executions>
<execution>
<id>add-test-source</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/HideUtilityClassContructor3041574_1.java</source>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/HideUtilityClassContructor3041574_2.java</source>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/HideUtilityClassContructor3041574_3.java</source>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/InputArrayTypeStyle.java</source>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/InputDesignForExtension.java</source>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/InputNonUtilityClass.java</source>
<source>sevntu-checks/src/test/resources/com/github/sevntu/checkstyle/checks/design/InputRegression1762702.java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.puppycrawl.tools.checkstyle.design;
package com.github.sevntu.checkstyle.checks.design;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.puppycrawl.tools.checkstyle.design;
package com.github.sevntu.checkstyle.checks.design;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.puppycrawl.tools.checkstyle.design;
package com.github.sevntu.checkstyle.checks.design;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Test case file for checkstyle.
// Created: 2001
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
package com.github.sevntu.checkstyle.checks.design;

/**
* Test case for ArrayTypeStyle (Java vs C)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Test case file for checkstyle.
// Created: 2001
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle;
package com.github.sevntu.checkstyle.checks.design;

/**
* Test case for the "design for inheritance" check.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.puppycrawl.tools.checkstyle.checks.design;
package com.github.sevntu.checkstyle.checks.design;

import java.awt.Dimension;
import javax.swing.JPanel;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.puppycrawl.tools.checkstyle.checks.design;
package com.github.sevntu.checkstyle.checks.design;

/**
* Input for HideUtilityClassConstructorCheck, a non utility class that has
Expand Down

0 comments on commit edc15ed

Please sign in to comment.