Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix pom #19

Merged
merged 2 commits into from
Apr 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<groupId>io.nats</groupId>
<artifactId>nats-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- <relativePath>../nats-parent-pom/pom.xml</relativePath> -->
</parent>

<groupId>io.nats</groupId>
Expand All @@ -27,7 +26,6 @@
<name>Apcera, Inc.</name>
</organization>


<developers />
<contributors />

Expand Down Expand Up @@ -62,38 +60,6 @@

<build>
<plugins>
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
Sets the VM argument line used when unit tests are
run.
<argLine>${surefireArgLine}</argLine>
Skips unit tests if the value of skip.unit.tests
property is true
<skipTests>${skip.unit.tests}</skipTests>
<skipTests>${skipTests}</skipTests>
Excludes integration tests when unit tests are run.
<excludes>
<exclude>**/IT*.java</exclude>
</excludes>
Includes specific categories when unit tests are
run.
<groups>io.nats.client.UnitTest</groups>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
</plugin> -->
</plugins>
</build>

Expand Down
2 changes: 2 additions & 0 deletions src/main/resources/nats_checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,13 @@
<message key="name.invalidPattern"
value="Parameter name ''{0}'' must match pattern ''{1}''."/>
</module>
<!--
<module name="CatchParameterName">
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
<message key="name.invalidPattern"
value="Catch parameter name ''{0}'' must match pattern ''{1}''."/>
</module>
-->
<module name="LocalVariableName">
<property name="tokens" value="VARIABLE_DEF"/>
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
Expand Down