Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

Commit

Permalink
Merge branch 'elasticFixNativeTypes' of github.com:pfcoperez/crossdat…
Browse files Browse the repository at this point in the history
…a into elasticFixNativeTypes
  • Loading branch information
pfcoperez committed Aug 30, 2016
2 parents 980f841 + c927be6 commit fc44690
Show file tree
Hide file tree
Showing 33 changed files with 337 additions and 999 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Only listing significant user-visible, not internal code cleanups and minor bug
## 1.6.0 (upcoming)

* Elasticsearch: support import tables without specifying a particular resource
* Major Akka version upgrade to 2.4 (2.4.9), thus enabling putting the server behind HAProxy.

## 1.5.0 (August 2016)

Expand Down
12 changes: 11 additions & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,17 @@
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-contrib_${scala.binary.version}</artifactId>
<artifactId>akka-actor_${scala.binary.version}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-cluster_${scala.binary.version}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-cluster-tools_${scala.binary.version}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
Expand Down
9 changes: 7 additions & 2 deletions driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,19 @@
<artifactId>crossdata-common_${scala.binary.version}</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_${scala.binary.version}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-cluster_${scala.binary.version}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-contrib_${scala.binary.version}</artifactId>
<artifactId>akka-cluster-tools_${scala.binary.version}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
Expand All @@ -56,7 +61,7 @@
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-http-experimental_${scala.binary.version}</artifactId>
<version>2.0.3</version>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>jline</groupId>
Expand Down
Loading

0 comments on commit fc44690

Please sign in to comment.