Skip to content

Commit

Permalink
[tarantool] Enforce checkstyle for Tarantool binding (brianfrankcoope…
Browse files Browse the repository at this point in the history
  • Loading branch information
risdenk authored Jan 31, 2017
1 parent bf2ae13 commit 231611b
Showing 1 changed file with 2 additions and 30 deletions.
32 changes: 2 additions & 30 deletions tarantool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ permissions and limitations under the License. See accompanying
LICENSE file.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<parent>
Expand All @@ -30,10 +31,6 @@ LICENSE file.
<name>Tarantool DB Binding</name>
<packaging>jar</packaging>

<properties>
<checkstyle.failOnViolation>false</checkstyle.failOnViolation>
</properties>

<dependencies>
<dependency>
<groupId>org.tarantool</groupId>
Expand All @@ -47,29 +44,4 @@ LICENSE file.
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.15</version>
<configuration>
<consoleOutput>true</consoleOutput>
<configLocation>../checkstyle.xml</configLocation>
<failOnViolation>true</failOnViolation>
<failsOnError>true</failsOnError>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 231611b

Please sign in to comment.