Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit 9caa47d

Browse files
authored
Merge pull request #19 from intenthq/fix-twitter-maven-deps
Swap Twitter repo to HTTPS, publish v1.7.1.
2 parents ad74347 + c01acf4 commit 9caa47d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@ The following top level dependencies are published in Maven central:
1212

1313
**Thrift support**:
1414
```
15-
"com.intenthq.pucket" %% "pucket-thrift" % "1.7.0"
15+
"com.intenthq.pucket" %% "pucket-thrift" % "1.7.1"
1616
```
1717

1818
**Avro support**:
1919
```
20-
"com.intenthq.pucket" %% "pucket-avro" % "1.7.0"
20+
"com.intenthq.pucket" %% "pucket-avro" % "1.7.1"
2121
```
2222

2323
**Spark connectors**:
2424
```
25-
"com.intenthq.pucket" %% "pucket-spark" % "1.7.0"
25+
"com.intenthq.pucket" %% "pucket-spark" % "1.7.1"
2626
```
2727

2828
**MapReduce integration**:
2929
```
30-
"com.intenthq.pucket" %% "pucket-mapreduce" % "1.7.0"
30+
"com.intenthq.pucket" %% "pucket-mapreduce" % "1.7.1"
3131
```
3232

3333
These dependencies should be combined depending on your usages; for example if you use Thrift and Spark then use the following:
3434

3535
```
36-
"com.intenthq.pucket" %% "pucket-thrift" % "1.7.0"
37-
"com.intenthq.pucket" %% "pucket-spark" % "1.7.0"
36+
"com.intenthq.pucket" %% "pucket-thrift" % "1.7.1"
37+
"com.intenthq.pucket" %% "pucket-spark" % "1.7.1"
3838
```
3939

4040

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ val pomInfo = (
3232

3333
lazy val commonSettings = Seq(
3434
organization := "com.intenthq.pucket",
35-
version := "1.7.0",
35+
version := "1.7.1",
3636
scalaVersion := "2.11.12",
3737
publishArtifact in Test := false,
3838
pomIncludeRepository := { _ => false },
@@ -70,7 +70,7 @@ lazy val commonSettings = Seq(
7070
Resolver.sonatypeRepo("public"),
7171
Resolver.sonatypeRepo("releases"),
7272
Resolver.typesafeIvyRepo("releases"),
73-
"Twitter" at "http://maven.twttr.com/",
73+
"Twitter" at "https://maven.twttr.com/",
7474
"Bintray" at "https://jcenter.bintray.com/"
7575
)
7676
)

0 commit comments

Comments
 (0)