From 42cdd916b9fdc8b70cca53698128f4cce94e2936 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Tue, 1 Oct 2024 17:11:02 +0100 Subject: [PATCH] try to fix plugin tests --- plugin-tester-scala/build.gradle | 1 + plugin-tester-scala/pom.xml | 5 +++++ project/plugins.sbt | 2 -- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/plugin-tester-scala/build.gradle b/plugin-tester-scala/build.gradle index 42edf46a..67b1ed60 100644 --- a/plugin-tester-scala/build.gradle +++ b/plugin-tester-scala/build.gradle @@ -26,6 +26,7 @@ def scalaBinaryVersion = "${scalaVersion.major}.${scalaVersion.minor}" dependencies { implementation "org.apache.pekko:pekko-http-cors_${scalaBinaryVersion}:1.1.0" implementation "org.scala-lang:scala-library:${scalaFullVersion}" + implementation 'com.google.protobuf:protobuf-java:4.28.2' testImplementation "org.apache.pekko:pekko-stream-testkit_${scalaBinaryVersion}:1.1.2" testImplementation "org.scalatest:scalatest_${scalaBinaryVersion}:3.2.19" testImplementation "org.scalatestplus:junit-4-13_${scalaBinaryVersion}:3.2.19.0" diff --git a/plugin-tester-scala/pom.xml b/plugin-tester-scala/pom.xml index 359b6b03..525c7fd4 100644 --- a/plugin-tester-scala/pom.xml +++ b/plugin-tester-scala/pom.xml @@ -39,6 +39,11 @@ pekko-http-cors_2.12 ${pekko.http.version} + + com.google.protobuf + protobuf-java + 4.28.2 + org.apache.pekko diff --git a/project/plugins.sbt b/project/plugins.sbt index 8812c896..8afc8f49 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -7,8 +7,6 @@ * This file is part of the Apache Pekko project, derived from Akka. */ -resolvers ++= Resolver.sonatypeOssRepos("snapshots") - enablePlugins(BuildInfoPlugin) val sbtProtocV = "1.0.7"