Skip to content

Commit

Permalink
Remove unnecessary license comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Oct 9, 2023
1 parent 837dbe3 commit c57baa7
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ object Dependencies {

val Couchbase = Seq(
libraryDependencies ++= Seq(
"com.couchbase.client" % "java-client" % CouchbaseVersion, // ApacheV2
"io.reactivex" % "rxjava-reactive-streams" % "1.2.1", // ApacheV2
"org.apache.pekko" %% "pekko-discovery" % PekkoVersion % Provided, // Apache V2
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion % Test, // Apache V2
"com.fasterxml.jackson.core" % "jackson-databind" % JacksonDatabindVersion % Test, // Apache V2
"com.fasterxml.jackson.module" %% "jackson-module-scala" % JacksonDatabindVersion % Test // Apache V2
"com.couchbase.client" % "java-client" % CouchbaseVersion,
"io.reactivex" % "rxjava-reactive-streams" % "1.2.1",
"org.apache.pekko" %% "pekko-discovery" % PekkoVersion % Provided,
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion % Test,
"com.fasterxml.jackson.core" % "jackson-databind" % JacksonDatabindVersion % Test,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % JacksonDatabindVersion % Test
))

val `Doc-examples` = Seq(
Expand Down Expand Up @@ -163,14 +163,14 @@ object Dependencies {

val AvroParquet = Seq(
libraryDependencies ++= Seq(
"org.apache.parquet" % "parquet-avro" % "1.13.1", // Apache2
"org.apache.parquet" % "parquet-avro" % "1.13.1",
"org.apache.avro" % "avro" % AvroVersion,
("org.apache.hadoop" % "hadoop-client" % "3.2.1" % Test).exclude("log4j", "log4j"), // Apache2
("org.apache.hadoop" % "hadoop-common" % "3.2.1" % Test).exclude("log4j", "log4j"), // Apache2
("org.apache.hadoop" % "hadoop-client" % "3.2.1" % Test).exclude("log4j", "log4j"),
("org.apache.hadoop" % "hadoop-common" % "3.2.1" % Test).exclude("log4j", "log4j"),
"com.sksamuel.avro4s" %% "avro4s-core" % avro4sVersion.value % Test,
"org.scalacheck" %% "scalacheck" % scalaCheckVersion % Test,
"org.specs2" %% "specs2-core" % "4.20.0" % Test, // MIT like: https://github.com/etorreborre/specs2/blob/master/LICENSE.txt
"org.slf4j" % "log4j-over-slf4j" % log4jOverSlf4jVersion % Test // MIT like: http://www.slf4j.org/license.html
"org.specs2" %% "specs2-core" % "4.20.0" % Test,
"org.slf4j" % "log4j-over-slf4j" % log4jOverSlf4jVersion % Test
))

val Ftp = Seq(
Expand All @@ -197,9 +197,9 @@ object Dependencies {
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion,
"org.apache.pekko" %% "pekko-http-spray-json" % PekkoHttpVersion,
"com.github.jwt-scala" %% "jwt-json-common" % "7.1.5", // ApacheV2
"com.google.auth" % "google-auth-library-credentials" % GoogleAuthVersion, // BSD 3-clause
"io.specto" % "hoverfly-java" % hoverflyVersion % Test // ApacheV2
"com.github.jwt-scala" %% "jwt-json-common" % "7.1.5",
"com.google.auth" % "google-auth-library-credentials" % GoogleAuthVersion,
"io.specto" % "hoverfly-java" % hoverflyVersion % Test
) ++ Mockito)

val GoogleBigQuery = Seq(
Expand Down Expand Up @@ -275,8 +275,8 @@ object Dependencies {
val Hdfs = Seq(
libraryDependencies ++= Seq(
("org.apache.hadoop" % "hadoop-client" % HadoopVersion).exclude("log4j", "log4j").exclude("org.slf4j",
"slf4j-log4j12"), // ApacheV2
"org.typelevel" %% "cats-core" % "2.9.0", // MIT,
"slf4j-log4j12"),
"org.typelevel" %% "cats-core" % "2.9.0",
("org.apache.hadoop" % "hadoop-hdfs" % HadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j",
"slf4j-log4j12"),
("org.apache.hadoop" % "hadoop-common" % HadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j",
Expand All @@ -289,7 +289,7 @@ object Dependencies {
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion,
"org.apache.pekko" %% "pekko-http-spray-json" % PekkoHttpVersion,
"com.github.jwt-scala" %% "jwt-json-common" % "7.1.5" // ApacheV2
"com.github.jwt-scala" %% "jwt-json-common" % "7.1.5"
) ++ Mockito)

val InfluxDB = Seq(
Expand Down

0 comments on commit c57baa7

Please sign in to comment.