Skip to content

Commit 5a4f4bf

Browse files
committed
Add local maven repo to gradle and sbt builds
This way we can digest published locally maven artifacts (during integration tests).
1 parent 3b9fe92 commit 5a4f4bf

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

java/gradle/dse/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ group 'com.datastax.spark.example'
77
version '0.1'
88

99
repositories {
10+
mavenLocal() // for testing
1011
mavenCentral()
1112
maven {
1213
url "https://repo.datastax.com/public-repos/"

java/sbt/dse/build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ autoScalaLibrary := false
88

99
scalaVersion := "2.11.8"
1010

11+
resolvers += Resolver.mavenLocal // for testing
1112
resolvers += "DataStax Repo" at "https://repo.datastax.com/public-repos/"
1213

1314
val dseVersion = "5.1.3"

scala/gradle/dse/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ group 'com.datastax.spark.example'
77
version '0.1'
88

99
repositories {
10+
mavenLocal() // for testing
1011
mavenCentral()
1112
maven {
1213
url "https://repo.datastax.com/public-repos/"

scala/sbt/dse/build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ version := "0.1"
55

66
scalaVersion := "2.11.8"
77

8+
resolvers += Resolver.mavenLocal // for testing
89
resolvers += "DataStax Repo" at "https://repo.datastax.com/public-repos/"
910

1011
val dseVersion = "5.1.3"

0 commit comments

Comments
 (0)