Skip to content

Commit

Permalink
Add internal uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
drashkov committed Jul 27, 2018
1 parent 389cb7d commit 3a30fc2
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ node_modules
*.log
**/menu_*.js*
**/module_*.js*
old_modules
old_modules
hooks.gradle
4 changes: 4 additions & 0 deletions misk-aws/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ dependencies {
testCompile dep.junitParams
testCompile project(':misk-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-gcp-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ dependencies {
compile project(':misk-gcp')
compile project(':misk-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-gcp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ dependencies {
testCompile project(':misk-testing')
testCompile project(':misk-gcp-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-graphite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ dependencies {
testCompile dep.junitParams
testCompile project(':misk-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-hibernate-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ dependencies {
compile project(':misk-testing')
compile project(':misk-hibernate')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-hibernate/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ dependencies {
testCompile project(':misk-testing')
testCompile project(':misk-hibernate-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-jaeger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ dependencies {
testCompile dep.junitParams
testCompile project(':misk-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-signalfx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ dependencies {
testCompile project(':misk-testing')
testCompile project(':misk-gcp-testing')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ dependencies {
compile dep.mockitoCore
compile project(':misk')
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}
4 changes: 4 additions & 0 deletions misk-zipkin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,7 @@ dependencies {
testCompile dep.junitParams
testCompile project(':misk-testing')
}

if (rootProject.file("../upload.gradle").exists()) {
apply from: rootProject.file("../upload.gradle")
}
4 changes: 4 additions & 0 deletions misk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,7 @@ jar {
from("web/admin/build")
}
}

if (rootProject.file("hooks.gradle").exists()) {
apply from: rootProject.file("hooks.gradle")
}

0 comments on commit 3a30fc2

Please sign in to comment.