Skip to content

Commit

Permalink
Merge pull request brianfrankcooper#482 from allanbank/elasticsearch-…
Browse files Browse the repository at this point in the history
…cleanup

[elasticsearch] Checkstyle updates for Elasticsearch.
  • Loading branch information
allanbank committed Nov 14, 2015
2 parents 7ff3416 + bcae000 commit 0eb982d
Show file tree
Hide file tree
Showing 3 changed files with 320 additions and 251 deletions.
31 changes: 24 additions & 7 deletions elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ LICENSE file.
<properties>
<elasticsearch-version>0.19.8</elasticsearch-version>
</properties>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype releases</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
Expand All @@ -57,4 +50,28 @@ LICENSE file.
<scope>test</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>
Loading

0 comments on commit 0eb982d

Please sign in to comment.