Skip to content

Commit

Permalink
Merge pull request #15 from crate/master
Browse files Browse the repository at this point in the history
version bump, resolve WARNING on pom dependency management
  • Loading branch information
bowenwr authored Mar 8, 2017
2 parents e02bf88 + adc0e01 commit 2ff24a3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ Run the meta test suite to validate server description and meta functionality:

The connector uses the CrateDB JDBC driver 2.x, which means that it is compatible with CrateDB >= 0.57.0. The driver does not use the CrateDB transport port to connect to a CrateDB server any longer and the connection string format has changed since the driver version 1.x.

Please see the [CrateDB JDBC documentation](https://crate.io/docs/reference/jdbc/en/2.1.2/#jdbc-driver-class) for further reference.
Please see the [CrateDB JDBC documentation](https://crate.io/docs/reference/jdbc/en/2.1.6/#jdbc-driver-class) for further reference.

## Additional Notes

Although this implementation uses Java and some freely available libraries for convenience, they are not a *requirement* for building a connector server.

Any language capable of generating code from [Apache Thrift](https://thrift.apache.org/) can be used.
Any language capable of generating code from [Apache Thrift](https://thrift.apache.org/) can be used.
25 changes: 15 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<copyrightOwner>Zoomdata, Inc.</copyrightOwner>
<!-- Versions -->
<connector-api.version>2.3.1</connector-api.version>
<crate.jdbc.version>2.1.2</crate.jdbc.version>
<crate.jdbc.version>2.1.6</crate.jdbc.version>
<query.dsl.version>4.1.4</query.dsl.version>
<slf4j.version>1.7.22</slf4j.version>
<logback.version>1.1.8</logback.version>
Expand Down Expand Up @@ -48,6 +48,19 @@
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>

<!-- Crate DB JDBC drivers -->
Expand Down Expand Up @@ -140,14 +153,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down Expand Up @@ -247,4 +252,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 2ff24a3

Please sign in to comment.