Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding changes to remove nightly-build-error #614

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions appsignals-tests/contract-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,3 @@ tasks {
dependsOn(":appsignals-tests:images:kafka:kafka-consumers:jibDockerBuild")
}
}

repositories {
mavenCentral()
}
4 changes: 0 additions & 4 deletions appsignals-tests/images/grpc/grpc-base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ plugins {

group = "software.amazon.opentelemetry"

repositories {
mavenCentral()
}

dependencies {
// Workaround for @javax.annotation.Generated
// see: https://github.com/grpc/grpc-java/issues/3633
Expand Down
4 changes: 0 additions & 4 deletions appsignals-tests/images/grpc/grpc-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ plugins {

group = "software.amazon.opentelemetry"

repositories {
mavenCentral()
}

dependencies {
implementation("com.sparkjava:spark-core")
implementation("org.slf4j:slf4j-simple")
Expand Down
4 changes: 0 additions & 4 deletions appsignals-tests/images/grpc/grpc-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ plugins {

group = "software.amazon.opentelemetry"

repositories {
mavenCentral()
}

dependencies {
implementation(project(":appsignals-tests:images:grpc:grpc-base"))
implementation("javax.annotation:javax.annotation-api:1.3.2")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ dependencies {
implementation("org.slf4j:slf4j-simple:1.7.30")
implementation("io.opentelemetry:opentelemetry-api")
}
repositories {
mavenCentral()
}

// not publishing images to hubs in this configuration - local build only through jibDockerBuild
// if localDocker property is set to true then the image will only be pulled from Docker Daemon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ java {
targetCompatibility = JavaVersion.VERSION_11
}

repositories {
mavenCentral()
}

dependencies {
implementation("com.sparkjava:spark-core")
implementation("org.apache.kafka:kafka-clients:3.6.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ java {
targetCompatibility = JavaVersion.VERSION_11
}

repositories {
mavenCentral()
}

dependencies {
implementation("com.sparkjava:spark-core")
implementation("org.apache.kafka:kafka-clients:3.6.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

repositories {
mavenCentral()
}

dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-logging")
Expand Down
4 changes: 0 additions & 4 deletions testing/sample-apps/springboot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

repositories {
mavenCentral()
}

dependencies {
implementation(platform("software.amazon.awssdk:bom:2.20.78"))
implementation("org.springframework.boot:spring-boot-starter-web")
Expand Down
3 changes: 3 additions & 0 deletions testing/validator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ repositories {
maven(
"https://jitpack.io",
)
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}

dependencies {
Expand Down