Skip to content

Commit

Permalink
use jcenter to get a nigthly as temp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brianarnold789 committed Nov 7, 2017
1 parent 3c6ac65 commit 3126bbc
Show file tree
Hide file tree
Showing 10 changed files with 55 additions and 19 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ task copyLibsToKit(type:Copy, dependsOn:check){
include '**/httpclient*'
include '**/httpcore*'
include '**/httpmime*'
include '**/jsch*'
include '**/jsch*'
}

into KIT_DEPENDENCIES_DIR
Expand Down
8 changes: 6 additions & 2 deletions samples/auth/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/batch/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/capture/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/credit/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/echeck/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/other/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/paypage/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/sale/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down
8 changes: 6 additions & 2 deletions samples/token/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
apply plugin : 'java'
apply plugin : 'eclipse'
repositories {
mavenCentral()
repositories {
// mavenCentral()
// added due to peer authenticated issue getting to mavenCentral
// remove after testing
maven { url "http://jcenter.bintray.com/"}
jcenter()
}
dependencies{
compile rootProject
Expand Down

0 comments on commit 3126bbc

Please sign in to comment.