Skip to content

Commit

Permalink
#98 build is clean
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 13, 2020
1 parent ca97b11 commit 342577a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
22 changes: 18 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,26 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
Expand Down Expand Up @@ -134,6 +146,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-xml</artifactId>
<version>0.22.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -266,7 +279,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</goals>
<configuration>
<includes>
<include>**/*Prof.java</include>
<include>**/*ProfTest.java</include>
</includes>
<argLine>-agentpath:/Users/yegor/apps/YourKit_Java_Profiler_2013_build_13044.app/bin/mac/libyjpagent.jnilib=sampling,monitors,onexit=memory,onexit=snapshot,dir=${project.build.directory}</argLine>
</configuration>
Expand All @@ -284,8 +297,9 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<configuration>
<excludes>
<excludes combine.children="append">
<exclude>findbugs:.*</exclude>
<exclude>duplicatefinder:.*</exclude>
<exclude>xml:/src/it/settings.xml</exclude>
</excludes>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @since 0.10.1
*/
@Loggable
public final class DirectivesProf {
public final class DirectivesProfTest {

/**
* Directives can parse long program.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* @since 0.10.1
*/
@Loggable
public final class XemblerProf {
public final class XemblerProfTest {

/**
* Xembler can modify DOM.
Expand Down

0 comments on commit 342577a

Please sign in to comment.