Skip to content

Commit

Permalink
Merge pull request brianfrankcooper#493 from allanbank/nosqldb-cleanup
Browse files Browse the repository at this point in the history
Nosqldb re-added to the build and checkstyle cleanup
  • Loading branch information
busbey committed Jan 26, 2016
2 parents 808152d + 89d3de0 commit 9520ff2
Show file tree
Hide file tree
Showing 5 changed files with 255 additions and 192 deletions.
5 changes: 5 additions & 0 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ LICENSE file.
<artifactId>mongodb-binding</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
<artifactId>nosqldb-binding</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
<artifactId>orientdb-binding</artifactId>
Expand Down
31 changes: 28 additions & 3 deletions nosqldb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ LICENSE file.

<artifactId>nosqldb-binding</artifactId>
<name>Oracle NoSQL Database Binding</name>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>kvclient</artifactId>
<version>1.2.123</version>
<groupId>com.oracle.kv</groupId>
<artifactId>oracle-nosql-client</artifactId>
<version>3.0.5</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
Expand All @@ -41,4 +42,28 @@ 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>
Loading

0 comments on commit 9520ff2

Please sign in to comment.