From 90570d8865fb25988c3fa98e1a43f822d29daa98 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Mon, 1 Jun 2020 12:09:06 +0300 Subject: [PATCH 01/12] Update config --- .idea/inspectionProfiles/Project_Default.xml | 1 + buildSrc/build.gradle.kts | 36 + .../gradle/internal/CheckVersionIncrement.kt | 104 +++ .../spine/gradle/internal/IncrementGuard.kt | 46 + .../io/spine/gradle/internal/RunBuild.kt | 90 ++ .../kotlin/io/spine/gradle/internal/deps.kt | 345 +++++++ config | 2 +- license-report.md | 851 +++++++++--------- pom.xml | 24 +- 9 files changed, 1085 insertions(+), 414 deletions(-) create mode 100644 buildSrc/build.gradle.kts create mode 100644 buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt create mode 100644 buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt create mode 100644 buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt create mode 100644 buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml index ce632a078..03926c8cc 100644 --- a/.idea/inspectionProfiles/Project_Default.xml +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -825,6 +825,7 @@ + diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts new file mode 100644 index 000000000..7dc929afc --- /dev/null +++ b/buildSrc/build.gradle.kts @@ -0,0 +1,36 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +plugins { + // Use Kotlin for `buildSrc`. + // https://kotlinlang.org/docs/reference/using-gradle.html#targeting-the-jvm + kotlin("jvm").version("1.3.72") +} + +repositories { + mavenLocal() + jcenter() +} + +val jacksonVersion = "2.11.0" + +dependencies { + implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jacksonVersion") +} diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt new file mode 100644 index 000000000..60709874e --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt @@ -0,0 +1,104 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.gradle.internal + +import com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES +import com.fasterxml.jackson.dataformat.xml.XmlMapper +import org.gradle.api.GradleException +import org.gradle.api.Project +import org.gradle.api.internal.AbstractTask +import org.gradle.api.tasks.Input +import org.gradle.api.tasks.TaskAction +import java.net.URL + +/** + * A task which verifies that the current version of the library has not been published to the given + * Maven repository yet. + */ +open class CheckVersionIncrement : AbstractTask() { + + /** + * The Maven repository in which to look for published artifacts. + * + * We only check the `releases` repository. Artifacts in `snapshots` repository still may be + * overridden. + */ + @Input + lateinit var repository: Repository + + @Input + private val version: String = project.version as String + + @TaskAction + private fun fetchAndCheck() { + val artifact = "${project.artifactPath()}/${MavenMetadata.FILE_NAME}" + val repoUrl = repository.releases + val metadata = fetch(repoUrl, artifact) + val versions = metadata.versioning.versions + val versionExists = versions.contains(version) + if (versionExists) { + throw GradleException(""" + Version `$version` is already published to maven repository `$repoUrl`. + Try incrementing the library version. + All available versions are: ${versions.joinToString(separator = ", ")}. + + To disable this check, run Gradle with `-x $name`. + """.trimIndent() + ) + } + } + + private fun fetch(repository: String, artifact: String): MavenMetadata { + val url = URL("$repository/$artifact") + return MavenMetadata.fetchAndParse(url) + } + + private fun Project.artifactPath(): String { + val group = this.group as String + val name = "spine-${this.name}" + + val pathElements = ArrayList(group.split('.')) + pathElements.add(name) + val path = pathElements.joinToString(separator = "/") + return path + } +} + +private data class MavenMetadata(var versioning: Versioning = Versioning()) { + + companion object { + + const val FILE_NAME = "maven-metadata.xml" + + private val mapper = XmlMapper() + + init { + mapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false) + } + + fun fetchAndParse(url: URL): MavenMetadata { + val metadata = mapper.readValue(url, MavenMetadata::class.java) + return metadata + } + } +} + +private data class Versioning(var versions: List = listOf()) diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt new file mode 100644 index 000000000..c227f4988 --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt @@ -0,0 +1,46 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.gradle.internal + +import org.gradle.api.Plugin +import org.gradle.api.Project + +/** + * Gradle plugin which adds a [CheckVersionIncrement] task. + * + * The task is called `checkVersionIncrement` inserted before the `check` task. + */ +class IncrementGuard : Plugin { + + companion object { + const val taskName = "checkVersionIncrement" + } + + override fun apply(target: Project) { + val tasks = target.tasks + tasks.register(taskName, CheckVersionIncrement::class.java) { + it.repository = PublishingRepos.cloudRepo + tasks.getByName("check").dependsOn(it) + + it.shouldRunAfter("test") + } + } +} diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt new file mode 100644 index 000000000..c083ad952 --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt @@ -0,0 +1,90 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.gradle.internal + +import org.gradle.api.GradleException +import org.gradle.api.internal.AbstractTask +import org.gradle.api.tasks.TaskAction +import org.gradle.internal.os.OperatingSystem +import java.io.File + +/** + * A Gradle task which runs another Gradle build. + * + * Launches Gradle wrapper under a given [directory] with the `build` task. The `clean` task is also + * run if current build includes a `clean` task. + * + * The build writes verbose log into `$directory/build/debug-out.txt`. The error output is written + * into `$directory/build/error-out.txt`. + */ +open class RunBuild : AbstractTask() { + + /** + * Path to the directory which contains a Gradle wrapper script. + */ + lateinit var directory: String + + @TaskAction + private fun execute() { + val runsOnWindows = OperatingSystem.current().isWindows() + val script = if (runsOnWindows) "gradlew.bat" else "gradlew" + val command = buildCommand(script) + + // Ensure build error output log. + // Since we're executing this task in another process, we redirect error output to + // the file under the `build` directory. + val buildDir = File(directory, "build") + if (!buildDir.exists()) { + buildDir.mkdir() + } + val errorOut = File(buildDir, "error-out.txt") + val debugOut = File(buildDir, "debug-out.txt") + + val process = buildProcess(command, errorOut, debugOut) + if (process.waitFor() != 0) { + throw GradleException("Build FAILED. See $errorOut for details.") + } + } + + private fun buildCommand(script: String): List { + val command = mutableListOf() + command.add("${project.rootDir}/$script") + val shouldClean = project.gradle + .taskGraph + .hasTask(":clean") + if (shouldClean) { + command.add("clean") + } + command.add("build") + command.add("--console=plain") + command.add("--debug") + command.add("--stacktrace") + return command + } + + private fun buildProcess(command: List, errorOut: File, debugOut: File) = + ProcessBuilder() + .command(command) + .directory(project.file(directory)) + .redirectError(errorOut) + .redirectOutput(debugOut) + .start() +} diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt new file mode 100644 index 000000000..2636036af --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt @@ -0,0 +1,345 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.gradle.internal + +import org.gradle.api.Project +import org.gradle.api.artifacts.ConfigurationContainer +import org.gradle.api.artifacts.dsl.RepositoryHandler +import java.net.URI + +/* + * This file describes shared dependencies of Spine sub-projects. + * + * Inspired by dependency management of the Uber's NullAway project: + * https://github.com/uber/NullAway/blob/master/gradle/dependencies.gradle + */ + +data class Repository(val releases: String, + val snapshots: String, + val credentials: String) + +/** + * Repositories to which we may publish. Normally, only one repository will be used. + * + * See `publish.gradle` for details of the publishing process. + */ +object PublishingRepos { + val mavenTeamDev = Repository( + releases = "http://maven.teamdev.com/repository/spine", + snapshots = "http://maven.teamdev.com/repository/spine-snapshots", + credentials = "credentials.properties" + ) + val cloudRepo = Repository( + releases = "https://spine.mycloudrepo.io/public/repositories/releases", + snapshots = "https://spine.mycloudrepo.io/public/repositories/snapshots", + credentials = "cloudrepo.properties" + ) +} + +// Specific repositories. +object Repos { + val oldSpine: String = PublishingRepos.mavenTeamDev.releases + val oldSpineSnapshots: String = PublishingRepos.mavenTeamDev.snapshots + + val spine: String = PublishingRepos.cloudRepo.releases + val spineSnapshots: String = PublishingRepos.cloudRepo.snapshots + + val sonatypeSnapshots: String = "https://oss.sonatype.org/content/repositories/snapshots" + val gradlePlugins = "https://plugins.gradle.org/m2/" +} + +object Versions { + val checkerFramework = "3.3.0" + val errorProne = "2.3.4" + val errorProneJavac = "9+181-r4173-1" // taken from here: https://github.com/tbroyer/gradle-errorprone-plugin/blob/v0.8/build.gradle.kts + val errorPronePlugin = "1.1.1" + val pmd = "6.20.0" + val checkstyle = "8.29" + val protobufPlugin = "0.8.12" + val appengineApi = "1.9.79" + val appenginePlugin = "2.2.0" + val findBugs = "3.0.2" + val guava = "29.0-jre" + val protobuf = "3.11.4" + val grpc = "1.28.1" + val flogger = "0.5.1" + val junit4 = "4.12" + val junit5 = "5.6.2" + val junitPlatform = "1.6.2" + val junitPioneer = "0.4.2" + val truth = "1.0.1" + val httpClient = "1.34.2" + val apacheHttpClient = "2.1.2" + val firebaseAdmin = "6.12.2" + val roaster = "2.21.2.Final" + val licensePlugin = "1.13" + val javaPoet = "1.12.1" + val autoService = "1.0-rc6" + val autoCommon = "0.10" + val jackson = "2.9.10.4" + val animalSniffer = "1.18" + val apiguardian = "1.1.0" + + /** + * Version of the SLF4J library. + * + * Spine used to log with SLF4J. Now we use Flogger. Whenever a coice comes up, we recommend to + * use the latter. + * + * Some third-party libraries may clash with different versions of the library. Thus, we specify + * this version and force it via [forceConfiguration(..)][DependencyResolution.forceConfiguration]. + */ + @Deprecated("Use Flogger over SLF4J.", replaceWith = ReplaceWith("flogger")) + val slf4j = "1.7.29" +} + +object GradlePlugins { + val errorProne = "net.ltgt.gradle:gradle-errorprone-plugin:${Versions.errorPronePlugin}" + val protobuf = "com.google.protobuf:protobuf-gradle-plugin:${Versions.protobufPlugin}" + val appengine = "com.google.cloud.tools:appengine-gradle-plugin:${Versions.appenginePlugin}" + val licenseReport = "com.github.jk1:gradle-license-report:${Versions.licensePlugin}" +} + +object Build { + val errorProneJavac = "com.google.errorprone:javac:${Versions.errorProneJavac}" + val errorProneAnnotations = listOf( + "com.google.errorprone:error_prone_annotations:${Versions.errorProne}", + "com.google.errorprone:error_prone_type_annotations:${Versions.errorProne}" + ) + val errorProneCheckApi = "com.google.errorprone:error_prone_check_api:${Versions.errorProne}" + val errorProneCore = "com.google.errorprone:error_prone_core:${Versions.errorProne}" + val errorProneTestHelpers = "com.google.errorprone:error_prone_test_helpers:${Versions.errorProne}" + val checkerAnnotations = "org.checkerframework:checker-qual:${Versions.checkerFramework}" + val checkerDataflow = listOf( + "org.checkerframework:dataflow:${Versions.checkerFramework}", + "org.checkerframework:javacutil:${Versions.checkerFramework}" + ) + val autoCommon = "com.google.auto:auto-common:${Versions.autoCommon}" + val autoService = AutoService + val jsr305Annotations = "com.google.code.findbugs:jsr305:${Versions.findBugs}" + val guava = "com.google.guava:guava:${Versions.guava}" + val flogger = "com.google.flogger:flogger:${Versions.flogger}" + val protobuf = listOf( + "com.google.protobuf:protobuf-java:${Versions.protobuf}", + "com.google.protobuf:protobuf-java-util:${Versions.protobuf}" + ) + val protoc = "com.google.protobuf:protoc:${Versions.protobuf}" + val googleHttpClient = "com.google.http-client:google-http-client:${Versions.httpClient}" + val googleHttpClientApache = "com.google.http-client:google-http-client-apache:${Versions.apacheHttpClient}" + val appengineApi = "com.google.appengine:appengine-api-1.0-sdk:${Versions.appengineApi}" + val firebaseAdmin = "com.google.firebase:firebase-admin:${Versions.firebaseAdmin}" + val jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:${Versions.jackson}" + val roasterApi = "org.jboss.forge.roaster:roaster-api:${Versions.roaster}" + val roasterJdt = "org.jboss.forge.roaster:roaster-jdt:${Versions.roaster}" + val animalSniffer = "org.codehaus.mojo:animal-sniffer-annotations:${Versions.animalSniffer}" + val ci = "true".equals(System.getenv("CI")) + val gradlePlugins = GradlePlugins + @Deprecated("Use Flogger over SLF4J.", replaceWith = ReplaceWith("flogger")) + @Suppress("DEPRECATION") // Version of SLF4J. + val slf4j = "org.slf4j:slf4j-api:${Versions.slf4j}" + + object AutoService { + val annotations = "com.google.auto.service:auto-service-annotations:${Versions.autoService}" + val processor = "com.google.auto.service:auto-service:${Versions.autoService}" + } +} + +object Gen { + val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}" +} + +object Grpc { + val core = "io.grpc:grpc-core:${Versions.grpc}" + val stub = "io.grpc:grpc-stub:${Versions.grpc}" + val okHttp = "io.grpc:grpc-okhttp:${Versions.grpc}" + val protobuf = "io.grpc:grpc-protobuf:${Versions.grpc}" + val netty = "io.grpc:grpc-netty:${Versions.grpc}" + val nettyShaded = "io.grpc:grpc-netty-shaded:${Versions.grpc}" + val context = "io.grpc:grpc-context:${Versions.grpc}" + + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("core")) + val grpcCore = core + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("stub")) + val grpcStub = stub + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("okHttp")) + val grpcOkHttp = okHttp + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("protobuf")) + val grpcProtobuf = protobuf + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("netty")) + val grpcNetty = netty + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("nettyShaded")) + val grpcNettyShaded = nettyShaded + @Deprecated("Use the shorter form.", replaceWith = ReplaceWith("context")) + val grpcContext = context +} + +object Runtime { + + val flogger = Flogger + + object Flogger { + val systemBackend = "com.google.flogger:flogger-system-backend:${Versions.flogger}" + val log4J = "com.google.flogger:flogger-log4j:${Versions.flogger}" + val slf4J = "com.google.flogger:slf4j-backend-factory:${Versions.flogger}" + } + + @Deprecated("Use the `flogger` object.", replaceWith = ReplaceWith("flogger.systemBackend")) + val floggerSystemBackend = flogger.systemBackend + @Deprecated("Use the `flogger` object.", replaceWith = ReplaceWith("flogger.log4J")) + val floggerLog4J = flogger.log4J + @Deprecated("Use the `flogger` object.", replaceWith = ReplaceWith("flogger.slf4J")) + val floggerSlf4J = flogger.slf4J +} + +object Test { + val junit4 = "junit:junit:${Versions.junit4}" + val junit5Api = listOf( + "org.junit.jupiter:junit-jupiter-api:${Versions.junit5}", + "org.junit.jupiter:junit-jupiter-params:${Versions.junit5}", + "org.apiguardian:apiguardian-api:${Versions.apiguardian}" + ) + val junit5Runner = "org.junit.jupiter:junit-jupiter-engine:${Versions.junit5}" + val junitPioneer = "org.junit-pioneer:junit-pioneer:${Versions.junitPioneer}" + val guavaTestlib = "com.google.guava:guava-testlib:${Versions.guava}" + val mockito = "org.mockito:mockito-core:2.12.0" + val hamcrest = "org.hamcrest:hamcrest-all:1.3" + val truth = listOf( + "com.google.truth:truth:${Versions.truth}", + "com.google.truth.extensions:truth-java8-extension:${Versions.truth}", + "com.google.truth.extensions:truth-proto-extension:${Versions.truth}" + ) + @Deprecated("Use Flogger over SLF4J.", + replaceWith = ReplaceWith("Deps.runtime.floggerSystemBackend")) + @Suppress("DEPRECATION") // Version of SLF4J. + val slf4j = "org.slf4j:slf4j-jdk14:${Versions.slf4j}" +} + +object Scripts { + + private const val COMMON_PATH = "/config/gradle/" + + fun testArtifacts(p: Project) = p.script("test-artifacts.gradle") + fun testOutput(p: Project) = p.script("test-output.gradle") + fun slowTests(p: Project) = p.script("slow-tests.gradle") + fun javadocOptions(p: Project) = p.script("javadoc-options.gradle") + fun filterInternalJavadocs(p: Project) = p.script("filter-internal-javadoc.gradle") + fun jacoco(p: Project) = p.script("jacoco.gradle") + fun publish(p: Project) = p.script("publish.gradle") + fun publishProto(p: Project) = p.script("publish-proto.gradle") + fun javacArgs(p: Project) = p.script("javac-args.gradle") + fun jsBuildTasks(p: Project) = p.script("js/build-tasks.gradle") + fun jsConfigureProto(p: Project) = p.script("js/configure-proto.gradle") + fun npmPublishTasks(p: Project) = p.script("js/npm-publish-tasks.gradle") + fun npmCli(p: Project) = p.script("js/npm-cli.gradle") + fun updatePackageVersion(p: Project) = p.script("js/update-package-version.gradle") + fun dartBuildTasks(p: Project) = p.script("dart/build-tasks.gradle") + fun pubPublishTasks(p: Project) = p.script("dart/pub-publish-tasks.gradle") + fun pmd(p: Project) = p.script("pmd.gradle") + fun checkstyle(p: Project) = p.script("checkstyle.gradle") + fun runBuild(p: Project) = p.script("run-build.gradle") + fun modelCompiler(p: Project) = p.script("model-compiler.gradle") + fun licenseReportCommon(p: Project) = p.script("license-report-common.gradle") + fun projectLicenseReport(p: Project) = p.script("license-report-project.gradle") + fun repoLicenseReport(p: Project) = p.script("license-report-repo.gradle") + fun generatePom(p: Project) = p.script("generate-pom.gradle") + fun updateGitHubPages(p: Project) = p.script("update-gh-pages.gradle") + + private fun Project.script(name: String) = "${rootDir}$COMMON_PATH$name" +} + +object Deps { + val build = Build + val grpc = Grpc + val gen = Gen + val runtime = Runtime + val test = Test + val versions = Versions + val scripts = Scripts +} + +object DependencyResolution { + + fun forceConfiguration(configurations: ConfigurationContainer) { + configurations.all { config -> + config.resolutionStrategy { strategy -> + strategy.failOnVersionConflict() + strategy.cacheChangingModulesFor(0, "seconds") + @Suppress("DEPRECATION") // Force SLF4J version. + strategy.force( + Deps.build.slf4j, + Deps.build.errorProneAnnotations, + Deps.build.jsr305Annotations, + Deps.build.checkerAnnotations, + Deps.build.autoCommon, + Deps.build.guava, + Deps.build.animalSniffer, + Deps.build.protobuf, + Deps.test.guavaTestlib, + Deps.test.truth, + Deps.test.junit5Api, + Deps.test.junit4, + + // Transitive dependencies of 3rd party components that we don't use directly. + "com.google.code.gson:gson:2.8.6", + "com.google.j2objc:j2objc-annotations:1.3", + "org.codehaus.plexus:plexus-utils:3.3.0", + "com.squareup.okio:okio:1.17.5", // Last version before next major. + "commons-cli:commons-cli:1.4", + + // Force discontinued transitive dependency until everybody migrates off it. + "org.checkerframework:checker-compat-qual:2.5.5", + + "commons-logging:commons-logging:1.2", + + // Force the Gradle Protobuf plugin version. + Deps.build.gradlePlugins.protobuf + ) + } + } + } + + fun excludeProtobufLite(configurations: ConfigurationContainer) { + excludeProtoLite(configurations, "runtime") + excludeProtoLite(configurations, "testRuntime") + } + + private fun excludeProtoLite(configurations: ConfigurationContainer, + configurationName: String) { + configurations.named(configurationName).get() + .exclude(mapOf("group" to "com.google.protobuf", "module" to "protobuf-lite")) + } + + fun defaultRepositories(repositories: RepositoryHandler) { + repositories.mavenLocal() + repositories.maven { repository -> + repository.url = URI(Repos.spine) + repository.content { descriptor -> + descriptor.includeGroup("io.spine") + descriptor.includeGroup("io.spine.tools") + descriptor.includeGroup("io.spine.gcloud") + } + } + repositories.jcenter() + repositories.maven { repository -> + repository.url = URI(Repos.gradlePlugins) + } + } +} diff --git a/config b/config index 8fab5d31e..d9223f98f 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 8fab5d31ee0b59cec4a17a670a7dcef074319ed4 +Subproject commit d9223f98f58cca6a6c91d3339f0fa6c366e3a00c diff --git a/license-report.md b/license-report.md index b1f693275..161afa1bf 100644 --- a/license-report.md +++ b/license-report.md @@ -17,7 +17,7 @@ * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -28,11 +28,15 @@ * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) +1. **Group:** org.codehaus.mojo **Name:** animal-sniffer-annotations **Version:** 1.18 + * **POM License: MIT license** - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + ## Compile, tests and tooling 1. **Group:** com.beust **Name:** jcommander **Version:** 1.72 * **POM Project URL:** [http://jcommander.org](http://jcommander.org) @@ -102,11 +106,11 @@ * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -124,29 +128,29 @@ * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -165,27 +169,27 @@ * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -193,6 +197,10 @@ * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -251,7 +259,7 @@ * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -260,7 +268,7 @@ * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -299,24 +307,23 @@ 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -388,7 +395,7 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Sat May 23 11:10:12 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). #NPM dependencies of `spine-web@1.5.4` @@ -401,7 +408,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **encoding@0.1.12** * Licenses: MIT * Repository: [https://github.com/andris9/encoding](https://github.com/andris9/encoding) -1. **google-protobuf@3.11.1** +1. **google-protobuf@3.11.4** * Licenses: BSD-3-Clause * Repository: [https://github.com/protocolbuffers/protobuf/tree/master/js](https://github.com/protocolbuffers/protobuf/tree/master/js) 1. **iconv-lite@0.4.24** @@ -416,7 +423,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **node-fetch@1.7.3** * Licenses: MIT * Repository: [https://github.com/bitinn/node-fetch](https://github.com/bitinn/node-fetch) -1. **rxjs@6.5.3** +1. **rxjs@6.5.4** * Licenses: Apache-2.0 * Repository: [https://github.com/reactivex/rxjs](https://github.com/reactivex/rxjs) 1. **safer-buffer@2.1.2** @@ -428,9 +435,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **tslib@1.10.0** * Licenses: Apache-2.0 * Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib) -1. **uuid@3.3.3** +1. **uuid@3.4.0** * Licenses: MIT - * Repository: [https://github.com/kelektiv/node-uuid](https://github.com/kelektiv/node-uuid) + * Repository: [https://github.com/uuidjs/uuid](https://github.com/uuidjs/uuid) 1. **whatwg-fetch@3.0.0** * Licenses: MIT * Repository: [https://github.com/github/fetch](https://github.com/github/fetch) @@ -439,232 +446,250 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic ## `Development` dependencies: -1. **@babel/cli@7.7.5** +1. **@babel/cli@7.8.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-cli](https://github.com/babel/babel/tree/master/packages/babel-cli) -1. **@babel/code-frame@7.5.5** +1. **@babel/code-frame@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-code-frame](https://github.com/babel/babel/tree/master/packages/babel-code-frame) -1. **@babel/core@7.7.5** +1. **@babel/compat-data@7.8.6** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-compat-data](https://github.com/babel/babel/tree/master/packages/babel-compat-data) +1. **@babel/core@7.8.7** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-core](https://github.com/babel/babel/tree/master/packages/babel-core) -1. **@babel/generator@7.7.4** +1. **@babel/generator@7.8.8** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-generator](https://github.com/babel/babel/tree/master/packages/babel-generator) -1. **@babel/helper-annotate-as-pure@7.7.4** +1. **@babel/helper-annotate-as-pure@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure](https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure) -1. **@babel/helper-builder-binary-assignment-operator-visitor@7.7.4** +1. **@babel/helper-builder-binary-assignment-operator-visitor@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor](https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor) -1. **@babel/helper-call-delegate@7.7.4** +1. **@babel/helper-call-delegate@7.8.7** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate](https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate) -1. **@babel/helper-create-regexp-features-plugin@7.7.4** +1. **@babel/helper-compilation-targets@7.8.7** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-compilation-targets](https://github.com/babel/babel/tree/master/packages/babel-helper-compilation-targets) +1. **@babel/helper-create-regexp-features-plugin@7.8.8** * Licenses: MIT * Repository: [https://github.com/babel/babel](https://github.com/babel/babel) -1. **@babel/helper-define-map@7.7.4** +1. **@babel/helper-define-map@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-define-map](https://github.com/babel/babel/tree/master/packages/babel-helper-define-map) -1. **@babel/helper-explode-assignable-expression@7.7.4** +1. **@babel/helper-explode-assignable-expression@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression](https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression) -1. **@babel/helper-function-name@7.7.4** +1. **@babel/helper-function-name@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-function-name](https://github.com/babel/babel/tree/master/packages/babel-helper-function-name) -1. **@babel/helper-get-function-arity@7.7.4** +1. **@babel/helper-get-function-arity@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity](https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity) -1. **@babel/helper-hoist-variables@7.7.4** +1. **@babel/helper-hoist-variables@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables](https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables) -1. **@babel/helper-member-expression-to-functions@7.7.4** +1. **@babel/helper-member-expression-to-functions@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions](https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions) -1. **@babel/helper-module-imports@7.7.4** +1. **@babel/helper-module-imports@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports](https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports) -1. **@babel/helper-module-transforms@7.7.5** +1. **@babel/helper-module-transforms@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms](https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms) -1. **@babel/helper-optimise-call-expression@7.7.4** +1. **@babel/helper-optimise-call-expression@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression](https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression) -1. **@babel/helper-plugin-utils@7.0.0** +1. **@babel/helper-plugin-utils@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils](https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils) -1. **@babel/helper-regex@7.5.5** +1. **@babel/helper-regex@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-regex](https://github.com/babel/babel/tree/master/packages/babel-helper-regex) -1. **@babel/helper-remap-async-to-generator@7.7.4** +1. **@babel/helper-remap-async-to-generator@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator](https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator) -1. **@babel/helper-replace-supers@7.7.4** +1. **@babel/helper-replace-supers@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers](https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers) -1. **@babel/helper-simple-access@7.7.4** +1. **@babel/helper-simple-access@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access](https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access) -1. **@babel/helper-split-export-declaration@7.7.4** +1. **@babel/helper-split-export-declaration@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration](https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration) -1. **@babel/helper-wrap-function@7.7.4** +1. **@babel/helper-wrap-function@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function](https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function) -1. **@babel/helpers@7.7.4** +1. **@babel/helpers@7.8.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-helpers](https://github.com/babel/babel/tree/master/packages/babel-helpers) -1. **@babel/highlight@7.5.0** +1. **@babel/highlight@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-highlight](https://github.com/babel/babel/tree/master/packages/babel-highlight) -1. **@babel/parser@7.7.5** +1. **@babel/parser@7.8.8** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-parser](https://github.com/babel/babel/tree/master/packages/babel-parser) -1. **@babel/parser@7.9.4** - * Licenses: MIT - * Repository: [https://github.com/babel/babel/tree/master/packages/babel-parser](https://github.com/babel/babel/tree/master/packages/babel-parser) -1. **@babel/plugin-proposal-async-generator-functions@7.7.4** +1. **@babel/plugin-proposal-async-generator-functions@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions) -1. **@babel/plugin-proposal-dynamic-import@7.7.4** +1. **@babel/plugin-proposal-dynamic-import@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import) -1. **@babel/plugin-proposal-json-strings@7.7.4** +1. **@babel/plugin-proposal-json-strings@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings) -1. **@babel/plugin-proposal-object-rest-spread@7.7.4** +1. **@babel/plugin-proposal-nullish-coalescing-operator@7.8.3** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator) +1. **@babel/plugin-proposal-object-rest-spread@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread) -1. **@babel/plugin-proposal-optional-catch-binding@7.7.4** +1. **@babel/plugin-proposal-optional-catch-binding@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding) -1. **@babel/plugin-proposal-unicode-property-regex@7.7.4** +1. **@babel/plugin-proposal-optional-chaining@7.8.3** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining) +1. **@babel/plugin-proposal-unicode-property-regex@7.8.8** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex) -1. **@babel/plugin-syntax-async-generators@7.7.4** +1. **@babel/plugin-syntax-async-generators@7.8.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators) -1. **@babel/plugin-syntax-dynamic-import@7.7.4** +1. **@babel/plugin-syntax-dynamic-import@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import) -1. **@babel/plugin-syntax-json-strings@7.7.4** +1. **@babel/plugin-syntax-json-strings@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings) -1. **@babel/plugin-syntax-object-rest-spread@7.7.4** +1. **@babel/plugin-syntax-nullish-coalescing-operator@7.8.3** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator) +1. **@babel/plugin-syntax-object-rest-spread@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread) -1. **@babel/plugin-syntax-optional-catch-binding@7.7.4** +1. **@babel/plugin-syntax-optional-catch-binding@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding) -1. **@babel/plugin-syntax-top-level-await@7.7.4** +1. **@babel/plugin-syntax-optional-chaining@7.8.3** + * Licenses: MIT + * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining) +1. **@babel/plugin-syntax-top-level-await@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await](https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await) -1. **@babel/plugin-transform-arrow-functions@7.7.4** +1. **@babel/plugin-transform-arrow-functions@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions) -1. **@babel/plugin-transform-async-to-generator@7.7.4** +1. **@babel/plugin-transform-async-to-generator@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator) -1. **@babel/plugin-transform-block-scoped-functions@7.7.4** +1. **@babel/plugin-transform-block-scoped-functions@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions) -1. **@babel/plugin-transform-block-scoping@7.7.4** +1. **@babel/plugin-transform-block-scoping@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping) -1. **@babel/plugin-transform-classes@7.7.4** +1. **@babel/plugin-transform-classes@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes) -1. **@babel/plugin-transform-computed-properties@7.7.4** +1. **@babel/plugin-transform-computed-properties@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties) -1. **@babel/plugin-transform-destructuring@7.7.4** +1. **@babel/plugin-transform-destructuring@7.8.8** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring) -1. **@babel/plugin-transform-dotall-regex@7.7.4** +1. **@babel/plugin-transform-dotall-regex@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex) -1. **@babel/plugin-transform-duplicate-keys@7.7.4** +1. **@babel/plugin-transform-duplicate-keys@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys) -1. **@babel/plugin-transform-exponentiation-operator@7.7.4** +1. **@babel/plugin-transform-exponentiation-operator@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator) -1. **@babel/plugin-transform-for-of@7.7.4** +1. **@babel/plugin-transform-for-of@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of) -1. **@babel/plugin-transform-function-name@7.7.4** +1. **@babel/plugin-transform-function-name@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name) -1. **@babel/plugin-transform-literals@7.7.4** +1. **@babel/plugin-transform-literals@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals) -1. **@babel/plugin-transform-member-expression-literals@7.7.4** +1. **@babel/plugin-transform-member-expression-literals@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals) -1. **@babel/plugin-transform-modules-amd@7.7.5** +1. **@babel/plugin-transform-modules-amd@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd) -1. **@babel/plugin-transform-modules-commonjs@7.7.5** +1. **@babel/plugin-transform-modules-commonjs@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs) -1. **@babel/plugin-transform-modules-systemjs@7.7.4** +1. **@babel/plugin-transform-modules-systemjs@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs) -1. **@babel/plugin-transform-modules-umd@7.7.4** +1. **@babel/plugin-transform-modules-umd@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd) -1. **@babel/plugin-transform-named-capturing-groups-regex@7.7.4** +1. **@babel/plugin-transform-named-capturing-groups-regex@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel](https://github.com/babel/babel) -1. **@babel/plugin-transform-new-target@7.7.4** +1. **@babel/plugin-transform-new-target@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target) -1. **@babel/plugin-transform-object-super@7.7.4** +1. **@babel/plugin-transform-object-super@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super) -1. **@babel/plugin-transform-parameters@7.7.4** +1. **@babel/plugin-transform-parameters@7.8.8** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters) -1. **@babel/plugin-transform-property-literals@7.7.4** +1. **@babel/plugin-transform-property-literals@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals) -1. **@babel/plugin-transform-regenerator@7.7.5** +1. **@babel/plugin-transform-regenerator@7.8.7** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator) -1. **@babel/plugin-transform-reserved-words@7.7.4** +1. **@babel/plugin-transform-reserved-words@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words) -1. **@babel/plugin-transform-shorthand-properties@7.7.4** +1. **@babel/plugin-transform-shorthand-properties@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties) -1. **@babel/plugin-transform-spread@7.7.4** +1. **@babel/plugin-transform-spread@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread) -1. **@babel/plugin-transform-sticky-regex@7.7.4** +1. **@babel/plugin-transform-sticky-regex@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex) -1. **@babel/plugin-transform-template-literals@7.7.4** +1. **@babel/plugin-transform-template-literals@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals) -1. **@babel/plugin-transform-typeof-symbol@7.7.4** +1. **@babel/plugin-transform-typeof-symbol@7.8.4** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol) -1. **@babel/plugin-transform-unicode-regex@7.7.4** +1. **@babel/plugin-transform-unicode-regex@7.8.3** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex](https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex) -1. **@babel/preset-env@7.7.6** +1. **@babel/preset-env@7.8.7** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-preset-env](https://github.com/babel/babel/tree/master/packages/babel-preset-env) -1. **@babel/register@7.7.4** +1. **@babel/register@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-register](https://github.com/babel/babel/tree/master/packages/babel-register) -1. **@babel/template@7.7.4** +1. **@babel/runtime@7.8.7** + * Licenses: MIT + * Repository: [https://github.com/babel/babel](https://github.com/babel/babel) +1. **@babel/template@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-template](https://github.com/babel/babel/tree/master/packages/babel-template) -1. **@babel/traverse@7.7.4** +1. **@babel/traverse@7.8.6** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-traverse](https://github.com/babel/babel/tree/master/packages/babel-traverse) -1. **@babel/types@7.7.4** +1. **@babel/types@7.8.7** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-types](https://github.com/babel/babel/tree/master/packages/babel-types) 1. **@firebase/app-types@0.4.3** @@ -766,7 +791,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **@protobufjs/utf8@1.1.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) -1. **@sinonjs/commons@1.6.0** +1. **@sinonjs/commons@1.7.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/commons](https://github.com/sinonjs/commons) 1. **@sinonjs/formatio@3.2.2** @@ -778,13 +803,16 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **@sinonjs/text-encoding@0.7.1** * Licenses: (Unlicense OR Apache-2.0) * Repository: [https://github.com/inexorabletash/text-encoding](https://github.com/inexorabletash/text-encoding) +1. **@tootallnate/once@1.0.0** + * Licenses: MIT + * Repository: [https://github.com/TooTallNate/once](https://github.com/TooTallNate/once) 1. **@types/bytebuffer@5.0.40** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) -1. **@types/long@4.0.0** +1. **@types/long@4.0.1** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) -1. **@types/node@10.17.9** +1. **@types/node@10.17.17** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) 1. **@webassemblyjs/ast@1.8.5** @@ -853,7 +881,10 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **acorn@6.4.1** * Licenses: MIT * Repository: [https://github.com/acornjs/acorn](https://github.com/acornjs/acorn) -1. **agent-base@4.3.0** +1. **agent-base@5.1.1** + * Licenses: MIT + * Repository: [https://github.com/TooTallNate/node-agent-base](https://github.com/TooTallNate/node-agent-base) +1. **agent-base@6.0.0** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-agent-base](https://github.com/TooTallNate/node-agent-base) 1. **ajv-errors@1.0.1** @@ -862,7 +893,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **ajv-keywords@3.4.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv-keywords](https://github.com/epoberezkin/ajv-keywords) -1. **ajv@6.10.2** +1. **ajv@6.12.0** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv](https://github.com/epoberezkin/ajv) 1. **ansi-regex@2.1.1** @@ -1018,7 +1049,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **browserify-zlib@0.2.0** * Licenses: MIT * Repository: [https://github.com/devongovett/browserify-zlib](https://github.com/devongovett/browserify-zlib) -1. **browserslist@4.8.2** +1. **browserslist@4.9.1** * Licenses: MIT * Repository: [https://github.com/browserslist/browserslist](https://github.com/browserslist/browserslist) 1. **buffer-from@1.1.1** @@ -1051,7 +1082,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **camelcase@5.3.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) -1. **caniuse-lite@1.0.30001015** +1. **caniuse-lite@1.0.30001035** * Licenses: CC-BY-4.0 * Repository: [https://github.com/ben-eb/caniuse-lite](https://github.com/ben-eb/caniuse-lite) 1. **catharsis@0.8.11** @@ -1069,7 +1100,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **chownr@1.1.2** * Licenses: ISC * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) -1. **chownr@1.1.3** +1. **chownr@1.1.4** * Licenses: ISC * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) 1. **chrome-trace-event@1.0.2** @@ -1090,7 +1121,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **code-point-at@1.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/code-point-at](https://github.com/sindresorhus/code-point-at) -1. **codecov@3.6.1** +1. **codecov@3.6.5** * Licenses: MIT * Repository: [https://github.com/codecov/codecov-node](https://github.com/codecov/codecov-node) 1. **collection-visit@1.0.0** @@ -1111,7 +1142,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **commander@2.20.3** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) -1. **commander@4.0.1** +1. **commander@4.1.1** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) 1. **commondir@1.0.1** @@ -1144,7 +1175,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **copy-descriptor@0.1.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/copy-descriptor](https://github.com/jonschlinkert/copy-descriptor) -1. **core-js-compat@3.5.0** +1. **core-js-compat@3.6.4** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) 1. **core-js@2.6.11** @@ -1249,7 +1280,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **duplexify@3.7.1** * Licenses: MIT * Repository: [https://github.com/mafintosh/duplexify](https://github.com/mafintosh/duplexify) -1. **electron-to-chromium@1.3.322** +1. **electron-to-chromium@1.3.377** * Licenses: ISC * Repository: [https://github.com/kilian/electron-to-chromium](https://github.com/kilian/electron-to-chromium) 1. **elliptic@6.5.2** @@ -1261,6 +1292,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **emojis-list@2.1.0** * Licenses: MIT * Repository: [https://github.com/kikobeats/emojis-list](https://github.com/kikobeats/emojis-list) +1. **emojis-list@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/kikobeats/emojis-list](https://github.com/kikobeats/emojis-list) 1. **end-of-stream@1.4.4** * Licenses: MIT * Repository: [https://github.com/mafintosh/end-of-stream](https://github.com/mafintosh/end-of-stream) @@ -1270,7 +1304,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **enhanced-resolve@4.1.1** * Licenses: MIT * Repository: [https://github.com/webpack/enhanced-resolve](https://github.com/webpack/enhanced-resolve) -1. **entities@2.0.0** +1. **entities@1.1.2** * Licenses: BSD-2-Clause * Repository: [https://github.com/fb55/entities](https://github.com/fb55/entities) 1. **errno@0.1.7** @@ -1282,12 +1316,6 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **es6-error@4.1.1** * Licenses: MIT * Repository: [https://github.com/bjyoungblood/es6-error](https://github.com/bjyoungblood/es6-error) -1. **es6-promise@4.2.8** - * Licenses: MIT - * Repository: [https://github.com/stefanpenner/es6-promise](https://github.com/stefanpenner/es6-promise) -1. **es6-promisify@5.0.0** - * Licenses: MIT - * Repository: [https://github.com/digitaldesignlabs/es6-promisify](https://github.com/digitaldesignlabs/es6-promisify) 1. **escape-string-regexp@1.0.5** * Licenses: MIT * Repository: [https://github.com/sindresorhus/escape-string-regexp](https://github.com/sindresorhus/escape-string-regexp) @@ -1309,7 +1337,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **esutils@2.0.3** * Licenses: BSD-2-Clause * Repository: [https://github.com/estools/esutils](https://github.com/estools/esutils) -1. **events@3.0.0** +1. **events@3.1.0** * Licenses: MIT * Repository: [https://github.com/Gozala/events](https://github.com/Gozala/events) 1. **evp_bytestokey@1.0.3** @@ -1333,10 +1361,10 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **extglob@2.0.4** * Licenses: MIT * Repository: [https://github.com/micromatch/extglob](https://github.com/micromatch/extglob) -1. **fast-deep-equal@2.0.1** +1. **fast-deep-equal@3.1.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/fast-deep-equal](https://github.com/epoberezkin/fast-deep-equal) -1. **fast-json-stable-stringify@2.0.0** +1. **fast-json-stable-stringify@2.1.0** * Licenses: MIT * Repository: [https://github.com/epoberezkin/fast-json-stable-stringify](https://github.com/epoberezkin/fast-json-stable-stringify) 1. **faye-websocket@0.11.3** @@ -1399,6 +1427,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **gauge@2.7.4** * Licenses: ISC * Repository: [https://github.com/iarna/gauge](https://github.com/iarna/gauge) +1. **gensync@1.0.0-beta.1** + * Licenses: MIT + * Repository: unknown 1. **get-caller-file@2.0.5** * Licenses: ISC * Repository: [https://github.com/stefanpenner/get-caller-file](https://github.com/stefanpenner/get-caller-file) @@ -1447,9 +1478,6 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **grpc@1.23.3** * Licenses: Apache-2.0 * Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node) -1. **handlebars@4.5.3** - * Licenses: MIT - * Repository: [https://github.com/wycats/handlebars.js](https://github.com/wycats/handlebars.js) 1. **has-ansi@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/has-ansi](https://github.com/sindresorhus/has-ansi) @@ -1492,16 +1520,22 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **homedir-polyfill@1.0.3** * Licenses: MIT * Repository: [https://github.com/doowb/homedir-polyfill](https://github.com/doowb/homedir-polyfill) -1. **hosted-git-info@2.8.5** +1. **hosted-git-info@2.8.8** * Licenses: ISC * Repository: [https://github.com/npm/hosted-git-info](https://github.com/npm/hosted-git-info) +1. **html-escaper@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/WebReflection/html-escaper](https://github.com/WebReflection/html-escaper) 1. **http-parser-js@0.4.10** * Licenses: MIT * Repository: [https://github.com/creationix/http-parser-js](https://github.com/creationix/http-parser-js) +1. **http-proxy-agent@4.0.1** + * Licenses: MIT + * Repository: [https://github.com/TooTallNate/node-http-proxy-agent](https://github.com/TooTallNate/node-http-proxy-agent) 1. **https-browserify@1.0.0** * Licenses: MIT * Repository: [https://github.com/substack/https-browserify](https://github.com/substack/https-browserify) -1. **https-proxy-agent@2.2.4** +1. **https-proxy-agent@4.0.0** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) 1. **iconv-lite@0.4.24** @@ -1648,12 +1682,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **istanbul-lib-source-maps@3.0.6** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **istanbul-reports@2.2.6** +1. **istanbul-reports@2.2.7** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **js-levenshtein@1.1.6** - * Licenses: MIT - * Repository: [https://github.com/gustf/js-levenshtein](https://github.com/gustf/js-levenshtein) 1. **js-tokens@3.0.2** * Licenses: MIT * Repository: [https://github.com/lydell/js-tokens](https://github.com/lydell/js-tokens) @@ -1666,7 +1697,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **js2xmlparser@4.0.1** * Licenses: Apache-2.0 * Repository: [https://github.com/michaelkourlas/node-js2xmlparser](https://github.com/michaelkourlas/node-js2xmlparser) -1. **jsdoc@3.6.4** +1. **jsdoc@3.6.3** * Licenses: Apache-2.0 * Repository: [https://github.com/jsdoc/jsdoc](https://github.com/jsdoc/jsdoc) 1. **jsesc@0.5.0** @@ -1687,10 +1718,10 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **json5@1.0.1** * Licenses: MIT * Repository: [https://github.com/json5/json5](https://github.com/json5/json5) -1. **json5@2.1.1** +1. **json5@2.1.2** * Licenses: MIT * Repository: [https://github.com/json5/json5](https://github.com/json5/json5) -1. **just-extend@4.0.2** +1. **just-extend@4.1.0** * Licenses: MIT * Repository: [https://github.com/angus-c/just](https://github.com/angus-c/just) 1. **kind-of@3.2.2** @@ -1714,6 +1745,12 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **lcid@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/lcid](https://github.com/sindresorhus/lcid) +1. **leven@3.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/leven](https://github.com/sindresorhus/leven) +1. **levenary@1.1.1** + * Licenses: MIT + * Repository: [https://github.com/tanhauhau/levenary](https://github.com/tanhauhau/levenary) 1. **license-checker@25.0.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/davglass/license-checker](https://github.com/davglass/license-checker) @@ -1729,6 +1766,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **loader-utils@1.2.3** * Licenses: MIT * Repository: [https://github.com/webpack/loader-utils](https://github.com/webpack/loader-utils) +1. **loader-utils@1.4.0** + * Licenses: MIT + * Repository: [https://github.com/webpack/loader-utils](https://github.com/webpack/loader-utils) 1. **locate-path@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/locate-path](https://github.com/sindresorhus/locate-path) @@ -1750,6 +1790,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **lolex@4.2.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) +1. **lolex@5.1.2** + * Licenses: BSD-3-Clause + * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) 1. **long@3.2.0** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/long.js](https://github.com/dcodeIO/long.js) @@ -1780,13 +1823,13 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **map-visit@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/map-visit](https://github.com/jonschlinkert/map-visit) -1. **markdown-it-anchor@5.2.7** +1. **markdown-it-anchor@5.2.5** * Licenses: Unlicense * Repository: [https://github.com/valeriangalliat/markdown-it-anchor](https://github.com/valeriangalliat/markdown-it-anchor) -1. **markdown-it@10.0.0** +1. **markdown-it@8.4.2** * Licenses: MIT * Repository: [https://github.com/markdown-it/markdown-it](https://github.com/markdown-it/markdown-it) -1. **marked@0.8.2** +1. **marked@0.7.0** * Licenses: MIT * Repository: [https://github.com/markedjs/marked](https://github.com/markedjs/marked) 1. **md5.js@1.3.5** @@ -1825,15 +1868,15 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **minimatch@3.0.4** * Licenses: ISC * Repository: [https://github.com/isaacs/minimatch](https://github.com/isaacs/minimatch) -1. **minimist@0.0.10** - * Licenses: MIT - * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) 1. **minimist@0.0.8** * Licenses: MIT * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) 1. **minimist@1.2.0** * Licenses: MIT * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) +1. **minimist@1.2.5** + * Licenses: MIT + * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) 1. **minipass@2.3.5** * Licenses: ISC * Repository: [https://github.com/isaacs/minipass](https://github.com/isaacs/minipass) @@ -1849,9 +1892,6 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **mkdirp@0.5.1** * Licenses: MIT * Repository: [https://github.com/substack/node-mkdirp](https://github.com/substack/node-mkdirp) -1. **mkdirp@1.0.4** - * Licenses: MIT - * Repository: [https://github.com/isaacs/node-mkdirp](https://github.com/isaacs/node-mkdirp) 1. **mocha@5.2.0** * Licenses: MIT * Repository: [https://github.com/mochajs/mocha](https://github.com/mochajs/mocha) @@ -1882,7 +1922,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **nice-try@1.0.5** * Licenses: MIT * Repository: [https://github.com/electerious/nice-try](https://github.com/electerious/nice-try) -1. **nise@1.5.2** +1. **nise@1.5.3** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/nise](https://github.com/sinonjs/nise) 1. **node-fetch@2.6.0** @@ -1897,12 +1937,15 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **node-pre-gyp@0.13.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/mapbox/node-pre-gyp](https://github.com/mapbox/node-pre-gyp) -1. **node-releases@1.1.42** +1. **node-releases@1.1.52** * Licenses: MIT * Repository: [https://github.com/chicoxyzzy/node-releases](https://github.com/chicoxyzzy/node-releases) 1. **nopt@4.0.1** * Licenses: ISC * Repository: [https://github.com/npm/nopt](https://github.com/npm/nopt) +1. **nopt@4.0.3** + * Licenses: ISC + * Repository: [https://github.com/npm/nopt](https://github.com/npm/nopt) 1. **normalize-package-data@2.5.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/npm/normalize-package-data](https://github.com/npm/normalize-package-data) @@ -1954,9 +1997,6 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **once@1.4.0** * Licenses: ISC * Repository: [https://github.com/isaacs/once](https://github.com/isaacs/once) -1. **optimist@0.6.1** - * Licenses: MIT* - * Repository: [https://github.com/substack/node-optimist](https://github.com/substack/node-optimist) 1. **optjs@3.2.2** * Licenses: MIT * Repository: [https://github.com/dcodeIO/opt.js](https://github.com/dcodeIO/opt.js) @@ -1990,7 +2030,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **p-limit@1.3.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) -1. **p-limit@2.2.1** +1. **p-limit@2.2.2** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-limit](https://github.com/sindresorhus/p-limit) 1. **p-locate@2.0.0** @@ -2008,7 +2048,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **package-hash@3.0.0** * Licenses: ISC * Repository: [https://github.com/novemberborn/package-hash](https://github.com/novemberborn/package-hash) -1. **pako@1.0.10** +1. **pako@1.0.11** * Licenses: (MIT AND Zlib) * Repository: [https://github.com/nodeca/pako](https://github.com/nodeca/pako) 1. **parallel-transform@1.2.0** @@ -2089,9 +2129,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **protobufjs@5.0.3** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) -1. **protobufjs@6.8.8** +1. **protobufjs@6.8.9** * Licenses: BSD-3-Clause - * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) + * Repository: [https://github.com/protobufjs/protobuf.js](https://github.com/protobufjs/protobuf.js) 1. **prr@1.0.1** * Licenses: MIT * Repository: [https://github.com/rvagg/prr](https://github.com/rvagg/prr) @@ -2149,13 +2189,16 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **readable-stream@2.3.6** * Licenses: MIT * Repository: [https://github.com/nodejs/readable-stream](https://github.com/nodejs/readable-stream) +1. **readable-stream@2.3.7** + * Licenses: MIT + * Repository: [https://github.com/nodejs/readable-stream](https://github.com/nodejs/readable-stream) 1. **readdir-scoped-modules@1.1.0** * Licenses: ISC * Repository: [https://github.com/npm/readdir-scoped-modules](https://github.com/npm/readdir-scoped-modules) 1. **readdirp@2.2.1** * Licenses: MIT * Repository: [https://github.com/paulmillr/readdirp](https://github.com/paulmillr/readdirp) -1. **regenerate-unicode-properties@8.1.0** +1. **regenerate-unicode-properties@8.2.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/regenerate-unicode-properties](https://github.com/mathiasbynens/regenerate-unicode-properties) 1. **regenerate@1.4.0** @@ -2164,19 +2207,22 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **regenerator-runtime@0.11.1** * Licenses: MIT * Repository: [https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime](https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime) -1. **regenerator-transform@0.14.1** +1. **regenerator-runtime@0.13.5** + * Licenses: MIT + * Repository: [https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime](https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime) +1. **regenerator-transform@0.14.3** * Licenses: MIT * Repository: [https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform](https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform) 1. **regex-not@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/regex-not](https://github.com/jonschlinkert/regex-not) -1. **regexpu-core@4.6.0** +1. **regexpu-core@4.7.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/regexpu-core](https://github.com/mathiasbynens/regexpu-core) 1. **regjsgen@0.5.1** * Licenses: MIT * Repository: [https://github.com/bnjmnt4n/regjsgen](https://github.com/bnjmnt4n/regjsgen) -1. **regjsparser@0.6.0** +1. **regjsparser@0.6.4** * Licenses: BSD-2-Clause * Repository: [https://github.com/jviereck/regjsparser](https://github.com/jviereck/regjsparser) 1. **release-zalgo@1.0.0** @@ -2218,7 +2264,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **resolve-url@0.2.1** * Licenses: MIT * Repository: [https://github.com/lydell/resolve-url](https://github.com/lydell/resolve-url) -1. **resolve@1.13.1** +1. **resolve@1.15.1** * Licenses: MIT * Repository: [https://github.com/browserify/resolve](https://github.com/browserify/resolve) 1. **ret@0.1.15** @@ -2254,6 +2300,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **semver@6.3.0** * Licenses: ISC * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) +1. **semver@7.0.0** + * Licenses: ISC + * Repository: [https://github.com/npm/node-semver](https://github.com/npm/node-semver) 1. **serialize-javascript@2.1.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/yahoo/serialize-javascript](https://github.com/yahoo/serialize-javascript) @@ -2299,7 +2348,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **source-list-map@2.0.1** * Licenses: MIT * Repository: [https://github.com/webpack/source-list-map](https://github.com/webpack/source-list-map) -1. **source-map-resolve@0.5.2** +1. **source-map-resolve@0.5.3** * Licenses: MIT * Repository: [https://github.com/lydell/source-map-resolve](https://github.com/lydell/source-map-resolve) 1. **source-map-support@0.5.16** @@ -2359,6 +2408,9 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **stream-each@1.2.3** * Licenses: MIT * Repository: [https://github.com/mafintosh/stream-each](https://github.com/mafintosh/stream-each) +1. **stream-events@1.0.5** + * Licenses: MIT + * Repository: [https://github.com/stephenplusplus/stream-events](https://github.com/stephenplusplus/stream-events) 1. **stream-http@2.8.3** * Licenses: MIT * Repository: [https://github.com/jhiesey/stream-http](https://github.com/jhiesey/stream-http) @@ -2389,9 +2441,12 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **strip-json-comments@2.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/strip-json-comments](https://github.com/sindresorhus/strip-json-comments) -1. **strip-json-comments@3.1.0** +1. **strip-json-comments@3.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/strip-json-comments](https://github.com/sindresorhus/strip-json-comments) +1. **stubs@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/stephenplusplus/stubs](https://github.com/stephenplusplus/stubs) 1. **supports-color@2.0.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) @@ -2413,13 +2468,13 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **tar@4.4.10** * Licenses: ISC * Repository: [https://github.com/npm/node-tar](https://github.com/npm/node-tar) -1. **teeny-request@3.11.3** +1. **teeny-request@6.0.1** * Licenses: Apache-2.0 - * Repository: [https://github.com/fhinkel/teeny-request](https://github.com/fhinkel/teeny-request) + * Repository: [https://github.com/googleapis/teeny-request](https://github.com/googleapis/teeny-request) 1. **terser-webpack-plugin@1.4.3** * Licenses: MIT * Repository: [https://github.com/webpack-contrib/terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) -1. **terser@4.4.2** +1. **terser@4.6.6** * Licenses: BSD-2-Clause * Repository: [https://github.com/terser/terser](https://github.com/terser/terser) 1. **test-exclude@5.2.3** @@ -2464,10 +2519,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **uc.micro@1.0.6** * Licenses: MIT * Repository: [https://github.com/markdown-it/uc.micro](https://github.com/markdown-it/uc.micro) -1. **uglify-js@3.7.2** - * Licenses: BSD-2-Clause - * Repository: [https://github.com/mishoo/UglifyJS2](https://github.com/mishoo/UglifyJS2) -1. **underscore@1.10.2** +1. **underscore@1.9.2** * Licenses: MIT * Repository: [https://github.com/jashkenas/underscore](https://github.com/jashkenas/underscore) 1. **unicode-canonical-property-names-ecmascript@1.0.4** @@ -2476,10 +2528,10 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **unicode-match-property-ecmascript@1.0.4** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/unicode-match-property-ecmascript](https://github.com/mathiasbynens/unicode-match-property-ecmascript) -1. **unicode-match-property-value-ecmascript@1.1.0** +1. **unicode-match-property-value-ecmascript@1.2.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/unicode-match-property-value-ecmascript](https://github.com/mathiasbynens/unicode-match-property-value-ecmascript) -1. **unicode-property-aliases-ecmascript@1.0.5** +1. **unicode-property-aliases-ecmascript@1.1.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/unicode-property-aliases-ecmascript](https://github.com/mathiasbynens/unicode-property-aliases-ecmascript) 1. **union-value@1.0.1** @@ -2536,7 +2588,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **watchpack@1.6.0** * Licenses: MIT * Repository: [https://github.com/webpack/watchpack](https://github.com/webpack/watchpack) -1. **webpack-cli@3.3.10** +1. **webpack-cli@3.3.11** * Licenses: MIT * Repository: [https://github.com/webpack/webpack-cli](https://github.com/webpack/webpack-cli) 1. **webpack-merge@4.2.2** @@ -2545,7 +2597,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **webpack-sources@1.4.3** * Licenses: MIT * Repository: [https://github.com/webpack/webpack-sources](https://github.com/webpack/webpack-sources) -1. **webpack@4.41.2** +1. **webpack@4.42.0** * Licenses: MIT * Repository: [https://github.com/webpack/webpack](https://github.com/webpack/webpack) 1. **websocket-driver@0.7.3** @@ -2569,9 +2621,6 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **window-size@0.1.4** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/window-size](https://github.com/jonschlinkert/window-size) -1. **wordwrap@0.0.3** - * Licenses: MIT - * Repository: [https://github.com/substack/node-wordwrap](https://github.com/substack/node-wordwrap) 1. **worker-farm@1.7.0** * Licenses: MIT * Repository: [https://github.com/rvagg/node-worker-farm](https://github.com/rvagg/node-worker-farm) @@ -2611,13 +2660,13 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic 1. **yallist@3.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) -1. **yargs-parser@13.1.1** +1. **yargs-parser@13.1.2** * Licenses: ISC * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) 1. **yargs@13.2.4** * Licenses: MIT * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) -1. **yargs@13.3.0** +1. **yargs@13.3.2** * Licenses: MIT * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) 1. **yargs@3.32.0** @@ -2625,7 +2674,7 @@ This report was generated on **Tue May 05 19:10:04 EEST 2020** using [Gradle-Lic * Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs) -This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern European Summer Time)** using [NPM License Checker](https://github.com/davglass/license-checker) library. +This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. @@ -2641,7 +2690,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2693,11 +2742,8 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 - * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) - * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) - * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) - * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 + * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -2740,7 +2786,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe 1. **Group:** com.google.errorprone **Name:** error_prone_type_annotations **Version:** 2.3.4 * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2756,7 +2802,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2788,11 +2834,11 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -2804,27 +2850,27 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -2860,6 +2906,10 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2877,10 +2927,6 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) -1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 - * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -2899,7 +2945,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -2934,7 +2980,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2994,11 +3040,8 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 - * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) - * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) - * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) - * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 + * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -3064,7 +3107,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM Project URL:** [https://github.com/google/error-prone-javac](https://github.com/google/error-prone-javac) * **POM License: GNU General Public License, version 2, with the Classpath Exception** - [http://openjdk.java.net/legal/gplv2+ce.html](http://openjdk.java.net/legal/gplv2+ce.html) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3084,11 +3127,11 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -3119,33 +3162,33 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12 +1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11 * **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) * **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -3172,27 +3215,27 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -3232,6 +3275,10 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3254,10 +3301,6 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) -1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 - * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -3307,7 +3350,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3316,7 +3359,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -3355,24 +3398,23 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -3457,7 +3499,7 @@ This report was generated on **Tue May 05 2020 19:10:07 GMT+0300 (Eastern Europe The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -3479,7 +3521,7 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3490,11 +3532,15 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) +1. **Group:** org.codehaus.mojo **Name:** animal-sniffer-annotations **Version:** 1.18 + * **POM License: MIT license** - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + ## Compile, tests and tooling 1. **Group:** com.beust **Name:** jcommander **Version:** 1.72 * **POM Project URL:** [http://jcommander.org](http://jcommander.org) @@ -3508,7 +3554,7 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3528,11 +3574,8 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/googleapis/googleapis](https://github.com/googleapis/googleapis) * **POM License: Apache-2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 - * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) - * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) - * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) - * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 + * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) 1. **Group:** com.google.auto **Name:** auto-common **Version:** 0.10 * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3582,11 +3625,11 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -3604,29 +3647,29 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -3645,27 +3688,27 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -3673,6 +3716,10 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3681,10 +3728,6 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 - * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -3737,7 +3780,7 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3746,7 +3789,7 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -3785,24 +3828,23 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -3882,7 +3924,7 @@ This report was generated on **Tue May 05 19:10:12 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -3898,7 +3940,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3950,11 +3992,8 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 - * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) - * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) - * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) - * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 + * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -3997,7 +4036,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic 1. **Group:** com.google.errorprone **Name:** error_prone_type_annotations **Version:** 2.3.4 * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4013,7 +4052,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4045,11 +4084,11 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -4061,27 +4100,27 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -4117,6 +4156,10 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4134,10 +4177,6 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) -1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 - * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -4163,7 +4202,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -4208,7 +4247,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4268,11 +4307,8 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 - * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) - * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) - * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) - * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 + * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -4338,7 +4374,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/error-prone-javac](https://github.com/google/error-prone-javac) * **POM License: GNU General Public License, version 2, with the Classpath Exception** - [http://openjdk.java.net/legal/gplv2+ce.html](http://openjdk.java.net/legal/gplv2+ce.html) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4358,11 +4394,11 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -4393,15 +4429,15 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12 +1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11 * **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) * **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -4410,16 +4446,16 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -4458,27 +4494,27 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -4518,6 +4554,10 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4540,10 +4580,6 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) -1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 - * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.0.1 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -4667,7 +4703,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://tomcat.apache.org/](https://tomcat.apache.org/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4680,7 +4716,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -5299,24 +5335,23 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -5464,7 +5499,7 @@ This report was generated on **Tue May 05 19:10:20 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5505,7 +5540,7 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5524,11 +5559,11 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -5540,27 +5575,27 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -5568,6 +5603,10 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5594,7 +5633,7 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -5672,11 +5711,11 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -5694,24 +5733,24 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -5730,27 +5769,27 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -5758,6 +5797,10 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5811,7 +5854,7 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5820,7 +5863,7 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -5859,24 +5902,23 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -5948,7 +5990,7 @@ This report was generated on **Tue May 05 19:10:24 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5989,7 +6031,7 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6008,11 +6050,11 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -6024,27 +6066,27 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -6052,6 +6094,10 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6078,7 +6124,7 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -6160,11 +6206,11 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -6182,33 +6228,33 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12 +1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11 * **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) * **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -6235,27 +6281,27 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -6267,6 +6313,10 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 + * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) + * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6329,7 +6379,7 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6338,7 +6388,7 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -6377,24 +6427,23 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -6466,4 +6515,4 @@ This report was generated on **Tue May 05 19:10:25 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue May 05 19:10:28 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Sat May 23 11:12:15 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file diff --git a/pom.xml b/pom.xml index 7caa60701..2e96dc51c 100644 --- a/pom.xml +++ b/pom.xml @@ -28,13 +28,13 @@ all modules and does not describe the project structure per-subproject. com.fasterxml.jackson.core jackson-databind - 2.9.10.4 + 2.9.10.3 compile com.google.appengine appengine-api-1.0-sdk - 1.9.79 + 1.9.77 compile @@ -52,19 +52,19 @@ all modules and does not describe the project structure per-subproject. com.google.firebase firebase-admin - 6.12.2 + 6.12.0 compile com.google.guava guava - 29.0-jre + 28.1-jre compile com.google.http-client google-http-client - 1.34.2 + 1.34.0 compile @@ -82,7 +82,7 @@ all modules and does not describe the project structure per-subproject. org.checkerframework checker-qual - 3.3.0 + 3.0.1 compile @@ -94,7 +94,7 @@ all modules and does not describe the project structure per-subproject. com.google.guava guava-testlib - 29.0-jre + 28.1-jre test @@ -112,7 +112,7 @@ all modules and does not describe the project structure per-subproject. org.apiguardian apiguardian-api - 1.1.0 + 1.0.0 test @@ -124,19 +124,19 @@ all modules and does not describe the project structure per-subproject. org.junit.jupiter junit-jupiter-api - 5.6.2 + 5.5.2 test org.junit.jupiter junit-jupiter-engine - 5.6.2 + 5.5.2 test org.junit.jupiter junit-jupiter-params - 5.6.2 + 5.5.2 test @@ -158,7 +158,7 @@ all modules and does not describe the project structure per-subproject. com.google.protobuf protoc - 3.11.4 + 3.11.3 io.grpc From f177b85a36d41589b8e30f3f55732fddde20c947 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Mon, 1 Jun 2020 12:12:42 +0300 Subject: [PATCH 02/12] Update Gradle --- gradle/wrapper/gradle-wrapper.jar | Bin 58702 -> 58695 bytes gradle/wrapper/gradle-wrapper.properties | 2 +- gradlew.bat | 3 +++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index cc4fdc293d0e50b0ad9b65c16e7ddd1db2f6025b..f3d88b1c2faf2fc91d853cd5d4242b5547257070 100644 GIT binary patch delta 12333 zcmY*N`gDT(+fr{UJPom)#((gw! zU-CHk3-^LZ_lBZ@A$vbluV?7CUFE5dHieFI{=8(z{qnkbDZ%R%H;icGKCsi$F9Yo$5CIWt`Fj)-@T;=q&f@zR zutiZy-S^y%g$q=yF^V&)(XR7!@iX@9b&~LO6Q3%56G{!xi&zx)*$WHVX@XK^*&)RD z_AElJW?bm3;&JWy(h5go+0)K?%=>A{v1(&(LUae=M-~hmU|6C8QxB5za`gLbm^A%z z8I|tk`D=UD41xSSUz~r@;sDlMA|welTD0A)WOE$VoXR(l18^NJvn^~vyX~Wlo*KVL zRuj!#g%rD>o9ak$nVL*$L%5stmcvjGrDv3?o{_=E#sC<^FsJ^4heJsy5Dv5PXm?W+ zSjK!Kl)LXsv0K^gNkj$V@*k5vT69Y!u=$Rie#s%_%+b8i+;Ue_|}#!OQZC_$c&^=3(j|qX>Oaz zxs-meR{03@vpV+sr(wEI1J>O%qE+-#JBH>FzAZgf*mT{!665Hx{OQ9dH$L&7Sy|+E zn!yd#)&@HE&cg&)v4GiN#N3?Q<1HP`Tp44OP?^DVZgzWv){TGNk z&u}SU$*{BS}0JgzH1pq%!Wiu)GkEb4Jz9B)7_ zRtJ_7brZ6CkSB`FfIXU!8FINnE&r0V53#P`qL__$mrWAs0Yoe_^JY zAzOj6+RX>033VXJBf(S)KPu}zWJ*>2B6Wn!5?k_}w8~_PK0|oL%1=V_#V1UYv^Ia> zCQ%F#-R0zoJxAjM?D|BegrD&NP?m#&Mu32TgM)zoyTu_iVKtQTKm;hF00Re*0SW<7 zL4KOEoSV%rqZfM7)?yy^=XJoE-2w>99WQyi2M#W1Vhszb;QH}u5pR^@)QOo12Ywp)WWXjtW(op55`@2VtGw6Y-9S9Y`ax>bOW+ zmHxDw9w_%AuiXz&k-Q6KgFyz&etslCSWv}DD_tv7Vc({OG?!%AD}h#mS>0A>ethze z*0n&^VjD_AL-F6Xi7+%rZh)^x9fOELx6n?%-8wZ=S@vge=k!BnJEZ=XBtX zA#D;5i8}X9yzxr5wr62g2RDiwQdBAgepPlE#dnjjrC*kcYLXXyQm`CFP7yS~(DV}3 zY7@DKmwKk62x;!f>tl=$YQ>*O(<6xy$eATC61ZMAyZGWaAIu$;tb+f`X2R{67^!{PB2Lv@Fm(qyvF#)bNAcqX1~u#a)`=TCU)$|}Vp2PH{a@{}9B zh9Ts_CH;nyN}l#&nc4+frs6;#Jf3%a9IxZ=ggo;%6mEQ@(|bYQ$GZ6 zo6L6%zWuO$53GfsuWT5(S^MZESxKfOaxHq*fp;>Q>JzCjt=Pvsnz1G9!2amyCB(Le1xZ5Xy4+|7UglXL0No z#_hhMKtOnsKtPcHI}KtNP=M7s@Sf^RZtroN99P!2O{_nRx(7{JwXL}Df|zV=p#iYL zl$>8BjG}XkXsnGmDW<@pMni+{;&U-23hM(+^^KfP8QdtmH*k6pGVSry2D4NKvz!JS zt`6-*au4SL-fQ{_j4ykG&p-e#qULUZZhtk3cTr=bI<`$PH9K8gw6NBhtG!KlFM&|3UQ!n;>J;mx?NKYLd=guOE)aA@4$uruBUqVkIRr}HB|LI!beo$oFQPwBa84m;g&i^XEE&-`?c_B ztV87vGMBG3vI`Nk4H}m^o~m{D5LPWI@ou5HNt($s8?8pkqe3}%|L;P~T%O`krE(2M zHyh2Vyb*R`6uIuC1Ap*m26-LpuR))y+0C2jM4_&@&0@YSjsg`*)~kwYIQDVG#Y)y~ zM!nUz)0{Ku2$R7Iqd98|)|}>zbP6S$nX@Lcm2`GCrXA!Scw%eSj)Iqz5B=xrqcZUJ zD`(LwCuto#Y{YR?=QEvVCW0qLsv9#&XYnd%WGCxS8`d7Z5gjw=YYOq&Jku^^r4QOu z^-8%UZ6 z0!-!f)5cVt#SUiY-0s(b1Z_}A+{fQ}lESH@c zJoW@K{X+$NCq<2QoUY3ZgxG2d{ms&oL@lMxn`wo7%~d}KtJd50T2ODpTyzT}?)_%c z3c2v^kAY?EF>WfOqtEzms`i{Ya~gW>sW8)S_WkLqQS17-OZc%JitP47R{H$-dSuO+ zYc_LqG(UaTM>Oa$g|kQq)v(o^3PAV$bD+1_hF_}+ZSGZT5pf-uk_cHdf-)%VJx{%B zpsx%Q<5c2OE?TL_<}Ur&=;jPeW%5M^qT)Tdo4_W4WOsbGp`3kZ$)q(c9L>I)CrR;3 zPP0sM5B!FWc;e7?g&?*2G>-UagheK}`@;}OZ0QAUHa6!km#aqz0qf<3QYy&fvZdLP zv5e!7hYj!s=f$$sz@qEP0%c>=p&^X^Vq<{=+pR@x(ix$K@_PA;N%TNjwNQtY|Jcm9mm$SV1|v+}=FZ%D(W%(X<*9=E%80hQQ#Io*eQdnN zx=R1?oO#bkMFBB^d&eDM&OOcuf6bqgxY58e4=v*EfJ5`NC01YGG>1-DyGCPwszs=ps9cYaVA^I7d2-KZee?(i3uAvr8qH}1!~>N#tBHq{vPLdtm; zPbE^!I(+R%C#3k>T$6GM6 zN<|hXB>1iVt$+HsNUf>OH+Ld0HgsLWYE-c#D}Gj{yp#zXsS}`;EH;|RAy(DpY3l)0 zYO@4dkqz{s67zaDu@tE=sw0@@_v_H$H|)6z9YkL{B2G{w&nAUEqw$2?p8;)yrF5c4 zjvaMxnnIpUP}t<{^X$sZv!dS2Ou5I5_v3T6xw zB+aQIMTBNG?t=wK@lc62mVn-^RBmIfN6$&@Mw2pZ$B7+Dv#v}p#Fdbz0B8b4$}SI-jGK+hDX_dD1|8#&X?(uK_CU=!%Pt)1$ZomGk# zp{|G1_?DF%Z--p?ou_1#r$j7jYeG^@j(HdqoXu{8wyD>qw*kglzIkTx*!SW3 zq##H-YQT5w|0E8^`?4!}J^(RokoaDRInwWXkI~j}u0qRu`{5p@p%uMrBdEk*U1?z& zpQ^X<=Q-GbU0!z-`~gJl^n0Znnjlsj*Pbyp=q)v$r)_pm?6)mD`y+kx8nVFSWx<&t zfAXE9e&vkX^%WuOkH@@uOccv#&){!dsb)<%kG+8iy+#p>kv9&J+UIQPS+K#>r_+1( z*1F$Y(9O3^MI@ToKXrZeCN`JLGM=3Oq*^?a98&R>*Dh}kVrBzRn>&kwZ&i_WVJH8!n});UVrvnk@IA)a)?@w zmK-43dwoKsU)ek{n>WwLix%ar;&?5I>8ZQfuqdI#veaf zp_-*{4(k?-!Pe?RR!}Fb^=LEe65l`C(H%8)uQfQr^*+e5YTE~=Y*3P3TU0myYUvk8?A`Ck39_~ zc&oB5(+QXWX-t7}aZ+D#bALv2WgMQDSp%Ob$1P?FD!z#}qE?GGI-6_2GO>*R3X@9? zSVUS4+$3ZT+C*B_bI6NG5-{uzjcxyZ7OIQ7XwWs9=jjAh%b{Mo_x(9t;ULZgYUr2# zmUJu>l22N(dpwm}_`v4GXMu6(hdfX*`XKskJtoDgKzJdZxfBhb9LFuLV^+R!fCq4g z@=JKwH6rf-YMb$?>$PO`j@dw7yy`q2(Y6hC^F!$&30iJ@ zL0xfN`$LhkvRbin@8;+5aWaokWqcR!BSOAoI;3Eqm`P8>rftW2+$MUd^q-M^N5$tI zpUG};j(YA_?|K<_d)-4S=nYxavBkF;HL7%M0|~D^y5Is^{#XtnU3Sh2Ma2U1yC)Cv z*L@6ljKa5Fl;A1lLCz>=@Z9uq$XMVUdw)C@t9MP`V5h0TAXF2=b%T6=%f!C0xPxgA zEljudrMYK5&l*^FuDKGV%Pu6jrAMf$o0RTL9aoeIBPAmTSOW!#Q$Jsex?BYTR5hJp z-@tZe)*_|Z#M1gmBisU*2XtWSp|P(Pq@g?ZwmI(iM;&Z=zy^!WFu08T*X~-G1-%y5 z?#~GM*M_M&cLl=A50YoU;J4|i=Uk&t`rR(klYjUPQP}~NBR5X^ z`N7-;LmHEUMOA}xkI)>vJ$RPZN;k@nl%8!Wvx;WCYFy6cXlHW#HDFiP29EOw1mYbF z^>G!y;u>T3afXW9xCvmrw;&7#e8wnKtqHf*Na|Bb;!i5aK+C0_?jRx`UHfeuz|N}v zuj~DjimTymv+pg2HFfPI?W$#Iuzo-M!{J|9?SKIn_vi)N(oyv0ay`#X?HOKu`2)GL zpE@PMPp_(&?>4TsLQDmHo9%@0(tT~{t{>sa_xJEC-G$WN1+2LIdXvOSZ5Iy1cV3^ z1O(Z?oH=jlQ)9YFDb}aP57hs#FCfEZ0+5R_CMbOwsqu$~9{@#Gww5La5(45100F@Z z0h(Fn2PUhm$@Yn$31t?=RNvrSdBBj`U_%Y?NXFxc($dogcG|5K+sDYPltcoHjnI9s zpoJKktsQ7D1hwxrD?@uk@??s^&1DWFl%Q0`9ZI7Ub;39Jz%b_x}pH_wUbIOfOp9pKcO;5_G;_^%&R)|W5x1TepMOmkEDw1)D2Ny? zsXozYqvrO_QJ0U4)UHhv4zu1cth_6BelUjE8qY4%MJFzm@~2T4r2m_^|4p0yhZt!( za`oi-OOYr1B}b_LGhv^B%%--+E-uNMCqTjlY#~!Q0xvxM5! zn8g^5<@&lHoF)9x1n*m-Bi1*RJ%*}R4U*15k#CkKgr5x&_A(j$8KND+ZiwNx1|HJ- zt64iq2T>odnb28)h`g+(`^l=hjkaoId@UBofc@y2%0qRTdd39|$H(5@r`z${)!)0f zy{iL1&u>?EXT>b;1Ah#UYaFyE($jgfHGhThzNz|ALnq#9E7_`*lvs#xobxTs$JN`W z+`pp3iasQ<-M0KtvT&S$B-)~gWJZ==G?<#xpm7S`DlVo52nQ#R52JdPKI7`PNOz>} zA~TY#-ZHhXg{8LF+=XAa#APDHZkjfbWJ&MVr_Rl-&cRi?e0DTa$!?utb}V9BYu&P_ zrhf73Mmwsx*Lyv4WQ{?0h7EgBNZ`3fGp>tbo2c>C9t)DmSeF0`ZIUj9ztWMc4<_)g zUvZ9g7=}h1`hwe)9Yms<57!q3igp5E6cqQl_=vhWx3F)mRY96Kr? zQ>E==$gF9F`CdE!FYC(ogHWNoju{MEez8!KW3513U?2Jxra`mX7-G7gSoe+rx7=O9 z<_z^UGCdT!Fcum5B_-8_!tn4rq>X+!#8DawGeK;+mKP`zsH79~2Ob~O^Xnjf7WNGV zzV)m2Ajng8kp9qIFp_cOVq=)yKTykTUnNg(bKGQhMiyov=|*kw3Ey8)RA%H6rk46z z4!_F;c%lLRygmQI;yw7-9KJRD$mCD6`@nw4s)YL`(_gut)a(@<8^3l(iTyo#3Fh|a z`Dk!@#(X6HhGvxf1+r$ENV4?;G?A?eBmkDM12NYAySdv^uDDvL8oh*DUu=z9j}(_* zUwxtBNHoX2opWYz*R}%w+GAyOSN+r#F?lPNwvzNF6vx{yv+pP>W7MD}4 zf6M$e2$L%SsJh}Dk`HRTqW;14?M-#h!h%rX3(@z}38o*K;0}q4@x5afL6nCk zpkP|)tb2UuIqPqzP3Hi-m)axH}KfyJLPF?X{1-{N75EpCD zz3al@OWg1n=MO|aLYM*SHly?3lpQ$qkBegU(XDf&V@>i#;04RP`o<=E0-m;S?dWGk zJdg=2WtlEocnvTfzq|UJodpyglo{t%fy}_quO=$FPDzOi!ABYoD>HIFh`wVD3k|sa zUUPZTD|#y3}c#$DV3p5CKo8GT$+!FogIb=}gNSc)ire;q4Ghi}; zZU};x^cUi$X=jj-D1K0Qrcth_^?J$Ajzg$@>82CRr{dTq!)09U07@=0>SOf&L`Mb*pi@iS${*6zNs@ zG9Q9eDzG5FpL$S#irG8sEN7!=8K_Sd$A8WE=8>W7y-g;rDv-@I*Lun+X%Tr#S_lUX zFFlAPLq1z{l}3sfr3sm#)E{B=Vt1?MR2JITi2P0P*_7l>Rt-TZaYl{#SKBAGQjgx^ z&uti(=H4F0i^WTW-{^C@D_vuiVx=$JV*(iQiLw+Dn>$+Bnh3~L`?!csgn)(vLdoac zu{Basv|2-#ZNt)ZCn~+)gRcZ*K*yA=K6E=2Nxx0avY&)R$l+%Gd=zSvy<}q*NHWf> zm{PKs4%}IQC;f@yI?jcqoZ-Y2DFy6aVXt+*6@&DB{UYF0Iv(=#Q_tQS6|u=(%$RB$w!GlgD|8*Gqv-<%mmxIe8u z+lcG0G`WtkVyIpqI(mXB|LyY430Q)asLk~=M(t-O#GS`8t4hkxG9GdZW33eI?u2_> zMf6!hT~(h+^PHW(pY2aJ^SYHrJYt&N%6z`TDz-r$iqPEiFFos@Q$CCM%)Ie-`+?p1 zHOh0EN$t6NHpUx*_yej@!?>0Lo)X)_M-B=Cq6>r^A_t@ss$)`CM!O2f&Sz?ZL9hEE zmK=qJAS!dc)nafawnDWg=?jzFtJN(LBx~|odXpaQG-)4TqSu0l@sTw)p5@TVC&1z3 z|Nj0PyPHgtl9OWgtGK!t;%5vKyjv5v2i{P=OT>vX=vcPcPegkd;It&N9r7WHSUT9a zCs`)w0wmyu%*L>!b7l+AJ<2*{NHE+z(>9n{UkE23`Rm)>m z@+<5XxP(sXGYc*Pf=&#tGm?65KJTw|(=h}sH4-4aIH;yNqrteOML}bU7XzvKe$`!4 z7F1_=OU<*tk%r&UFfB*L*W6h4Oh_lK zFHOLmKve%GXTcj|*hV6kFXMZ3;;C~BtkHZJUNv?$e~(CVQvS+v-?qr_fy?+)3Qa>b&K^xzsn%eh3)_=>UB*TgcL7EL!H@6Y$AIaagh%?U2w89pj*%n z(z8ZrL&S_YWp((~#f@)Q%-c;Xp5Qc+%j$rb0Q#dW6ZYFA_h@x*@sYGJOF2oRvH4cT z;QJQUTD~x6MmzpyoGUQ}zgo>E(#Z#(&p;(8X708RH@2O|yn-nIW2W0POaCq_t)_|~ zIaiixr381ErrN?4TqM6>20VnT!b_nG1FO<{o#SQ3(-k7HEeSE@85!})9!3qsVkGbx zWdyGV#6x&T{EKXzQwdtQ`wsr{+H$_*8ab!<{mM!J;u~s03Hk8-Oq&OU^&7lDKI<+I>hJY9139V!r?^7wN4ASTxC6#H2LH=U8>C^yTI=x#UcQO2tmy?_as*4s~w+2N2-$k9;> zn6H2LmK!1jgdhk#gc39rMFMnQQ%8G`t=?~InB^~#Atc*|EtT<&aQU9OY%P~)7(s}; z4x8l+!d@t=FOFrL>jcDg>m}i*VX;rY2kj7hV&UC?wKrK(+-J?+nfiIY()e;wDpdLQ zC-<8_6l+)*yQ1k0G_o9fXx(rEh}>953MaL%EwGY^G;#uAs6x4eS{yj&7E4IJzTZZ* z$NeRd?T1?|IGUE57lFtF|2f+s+S@nOn9*S+S$;sXwbEOvk|3R{Qd4c>0&INhq0v#Z z#y4xoE#LRE*U@G6+nXD*7I>o|HFMQ0ezD3fdnXCamea<3qq8)nk}~3uNuk=lqJ{ik zA)j)a9jW>hl}WG5cp2zcx=hPs$4=X-pw_xnVe_j7v|7M2?5QP=Wvwlsd?BW2$%q7% zqT{N*MknZwG`9a3Y&@;!(|J5iuBQijl0I#AQfk=S~TVx?!bX5sAycJQnVsSukRQd!wQf$N29ZUMST`4_U1*dfPw;xRA zW6~Z643#Zg|LddrHAF54RJ^>1vHs2+7DS_E7ht~J67 zw-zK>-!r1QTquDCRKLDxdJ zHlWAB{m^qdhKWCNK8Ub6yZC`3kS6f{y;S-zw?>*ewzR))Q%&;pPGzK`D?5Y5&JEq908z3Xgn zl#o`a8m2=_k)oC&-&wI-M=c_yn3+z*8x9Ps?2k_@dSD75~5WUH~ z0J6&1z-M$7ur;=X$hFBv^b;#%b_yW(Wt(0{5DE zB=jWumQ5DevQtx*k{G=MmF1xOhDhYcS?LomJA$<)xh1tL4V_ace8=Gl!Gb<2OEG(u zcGpkSDea2tOeeGE74QfrsU+LAt4^23{6*RfH;CmPjj33=NK4m2$OQ^Rd5a>| zNDi7KN+qQaPfse+Kq}UtxW#cHq;or9HLS)20D=bURFzm^i=_Fh!WRu6($LtQ?H7;_)-D|*tu#PT(FTj~!H{bBYoY5swD zx%BgRwJrF;+E6mQ(hEvOz~^3U-radQ-y7z04Q$_2^G{ zH$8A9Cd2m#>w#fjUJ|{9zHfNngbf2|>I`~8^3O@Zf74%zJZz2Z`D4N-CbZGZf zaE$!OYvkHIFMXoXICV%q>i7JyE0`H-ik~^xwyz-YoIfEsYupjc5wQ7HQ+s{< z-bKKorkWZ_S+S>?3u-?>(AUeo+6+w((FPcTmX~hkBIdZ*DK)4rV z43uCpAGsnUQ71tRYNk3sW%9f zt#Un;%S?3*8|rsG?JUT4|!Xd{N@U?WyK`Jl?$Le*s-?6~4 zTo{{ZZAE3R9mqrZ`oI5#0Oe71d%%H?i(aHo7xj}8DljiMCBdy&;1~}qaMT6@%C->9 zl?&x+`yAa;9>G|H`#k!_V(G*y*%#$&a=j1qFFE^eUHVwQy(k}8xiXLXB21cs2q-&s z-Nly6m@vAfIuoGqL#!WM6J<BxM`GU9VIwe$f*D*6T^JE{&BVTbk|RUI@$AoXu6Q#s;Ds3$~a7{ zaMWkQt(1zZ63&zI66o1(#;N|GH)yPvHeo;a+3Ve1Ok2u$vpGo+}ZUZ$PM(;bhL zOC6ZQ3AGGcrwjh<0RGsEnyLUB`&A^!pyCg;#hI(pJ_kO0)9@32N35eJtdw_2M{5jE znAka$=}%v$hMoO!cFXk_DEOwi<>^SfYKYO_)Qv}Kd`~-9Ikg}kRrZ7K^iS$lE&!CI8K_d8j&2* zgk`j!L_KneO$i)8P>+fm{-*tTvwtDDvG*wYyCc(fwzk?%w)PUnRsU*=H_alC!~<~~ z^YkTCVz0K)43KTur+yoc{<$(~nkQ}H8^IgK&Sov^3+?1HGk56d_+8fPcmC9YK^2Wa zw|=Wj@?Gsy9ToA-AD+00ydoK0ak@@ucDv%Pk#T~E6@Di=h~9MwOCbBo6C$w@7{n7_ zD1InA9?w-Mxvx2#p^egPxm0l=7uHCfA?1xJ!!JkEWiyw;&!W>x!Hq<#P500E2+Y`}r$eauE>(gEf;oS9S z3_8yA0D&LBR~Si3vqpEaGkYp8j6>j>FSomZv-N^U^O_AryS#^y4rrKLYU;plp0xVctpUQgOkE^x*BnP`7G@-7#2|kf&QAlQxY}_#-Y&j-mv=%#Z`H z`=ZHxV788f6%*Z=XJuA}7%4S)VK{SLPU;aKjZyXRxEVn`g>2lvotJQ_HSO;d{!!sL zt+@4Typvr_=8_Egou|L2k^D)x@g+SC2N|tU=o1bG1cWW!-;?j}m6)QjukI8b`;GZt zh$I`F-4@+7)Yz5vhJD^8I?~wNJBkkTuT~nAFmD6%uZS{n0UH2^0&+6O{#P^2wLnYs zU-fek|F0DVIHUb@j9uUbRFnQsA2`rYcpT8n0zDv`?4L?-Q5H}{^ABb(N&u|r|3Q6v zToCFKJwS`|pQyaV2N31@2lM{IC82-tdWjzTKQ9p=l4Tq~j>!L*KY>)2Sph#Z{)y?! zL`47n@bLc+kWu?Dt1V0P-$eKS?|`cNAKDwFv%(69H2xcq9rSC39*|)H3b0@SA+Df- zXjcgU$<}{GB9PH4FXS~SeN`D!8Fad;37HNOT@!>H2KlcU0@U0=wJ!Lehc!h2v=1o2 zmk9L92lroq$aMlhhVNe$1BhWB4Yc!DeD(wF_|g8e;s>MsOy6818&p*i5pvzfInIP;FmmDkZ?B6Un?5OWt#x-nEO9! z9MJO)8ff{i3a;>ZBp!_;o5aAv@V7V9c(n||+*rSI$0A=jy0N^Jh3jF)ipW+F+BlM7XXVyLt)Cv1qlYW@)-p00o3)8StMlHB=neNdW*a?9j z75(grg2%DxW0pWLL+mmmjZPywviK%I>4KB8R}jPkkp}XFqXO>p65!vZ>W%IfPxffu zi5Dle(giuCoW4OB(ytjbH+V}ti0?up&`Um)+Akwbv+BuR2=CMr`Qzk7zyXtHc#5p2eZ?>2oVQbFILx`y8|e^o2KNB9JpB$|ajUXrPZI~}FolsU@Alje z1Phd{(TX#xQGi$9bZ|5G9ki2ibdnxV{l1p!qZZZ59k3P_vQmYl$*_Wn?hjgoTg|!B zSS4aRaHkhe#IvU3^_ve-lVCW;UWe(7z>Y6&T0t?z1g9M)f6LVywPDck&!bPcljEr! zTsPqPBH+?UjRn5$8YPaW-lFAhB}3?}>Ri5w7=-O)83MGhi`fgGp!ZV08DC2>cOz5i zg=}&{Nn>a-=?&v-(&Y+7f*+kzta?K1GBE~+f|qojD!Bit4FSTcF`DRWYU+|P-wfg$ z{8a2-_WLBN0&nHkWPuvh5~0gt*Ilpq3c3d11tPf>>`;()+>M(tz!tAixHOIZ5|Wxs zV6*+lKHoUarn?h?$|j^})~f3z*sGIvqhRc}9b2|$>7kJsVSy%$-#Wv>4ueZ6?MSWi z5vct<{`B)0O^+(`UON67W~n`I^Emgmt_pO9&VH(K>}3Az&qsM~(e~_Y68o)^7WXq{ zkRJjr5P1(}eDF8BtWVsMmkkvCVrQ&Ug(I$xjIP8(&CM_JRk)l3h?`gZKM&w>4@rqV zqmV^-MFI05%8@Nf`Xx0c3y#08&y~WvXSR zzhw?UF4=jGGfR2X#lfP;`+*Tncv;HQS;H>A*0Z@@av$aLez`rpzt00B+$#^$rq`~k zH#6am!-Q|G&m7SKocj2V4nSY%NcC~lTkjEy{t6>{`b8l+z;MPwPN%HTtXK1t@3qX$ zhjPO&2t&Q6RtP}8Yy17j8;BuSQLWC!W+FfF3TQ0lwt`KagDU z)y@lX{50sQBdJwK#HY5v0Y|K>C&1v_6!SKUO~mo0)Y7O+00wJSd)P0kw+!EWr7bh1 z)gk|Ibx)h!>V}IoE?O3PLol;CkHYw>sO6pue%B;g8zN5Dbh0>jJ|N2!M~V%mZpSvV zJ&8PDopPvT+QS#;0rNnGR5`m<_D#u-F;jF!oalGY41{)7Q%kfM)hvs#k)gl{M90=; zjlD!;jTv!?P&NK=#8w_?<#}Yh!+}SX!A96VV3Ebl$XIAJtvq9E@qroX3DzAQ!Xqrj z9i7hryz1HzTsHvk2`Jk)8v@x4#^c>IkHFl>9eAC>3El8pak$^H4V*s@2ki5*wLEFW zOXN#x0Z-a{(2yh*_fRazWr}3pUk}jt$m5*=(f5&W1Nxc{9T|I7`=oIIj_Brq^^ zLNG9re|`W2poB$eV6`@^m!78kTY`nRVqxj9sqWoM6kEKhD_kPp!qTN#Py<72Z0@>gNJh1x43heX>NcTz1xjVCwsd86y@yZsu z2Q84Ox5gkq)cLg}Y8!5+^1&XW7dDypEq|f#eLmRFNkj%h(Jwwd!XYU z5%`1T3n&N(j$Qvw140WWlK41uLrmy|u|eZU>Tl+a7s2~WhAw1$0On+HdZ zmjpmhZMf!-D+rFMd8{BBG@(4Tj6IfN+eoIs%{GVVJVh3am~x9n1P~;6q*NS@1{ila zNAYx`kGKu9c?OLz#3i$tw~)q|j4B}IhkAGwC%GAL0-(ACa0#LL0?kZ(D%U=qT$j|D zn>zNr#E$t8OO-RTVLVw^-kR0C5pC8^Du$#QoGwX@=cF5!7v#(uoOQ=t=)t*rA*(M% zsd6Xf$itE9!J2X5HR3)-4U^>NY@@hD;F;v$x8k8nzH~2{Am*zeHiK|>86)mfV0J2C zo7W2DMe}f}BKujgKVGjNyw+WAHqs2b2+SGdDQSYW>3BlMU)lDg#Nuu@Bt}J^g%s9z zG@R-0d97c`=#HRXFGM4|qEaz6orrASEdQ-Fsx;S2nQ8T^bw^8H@ z2D5}v;6YcUfIzLPY_whFz1yWn&yO!-Fq(!`2|n+^O4>4?eML0~oSFay z=uRz%#@nvVgf%x`y6FR7u_JP%o5#K*isyVSIxPZu1do_6L_w)^wpTM|InVo!WQ!ED zUW=~IDXX)nmv&ewvhvOyQLo!>B->JT$Zz8Vym(%hRRi2!emc#qFzx%x*yLf(L2pURXO2drFOmqKQ%!RY<~7@ z*KWWg=S_v&p(Z==(cyHAf}-N8AYk-6BT#CP6y??O5d=# zt1LyPV9Gd|l{>Af!Ul-YLisb$q}0Ih3J-!XB4EIkxOM}45 z9d^aCxI!x|LvUQMZanyg-#}h4YjTc;q~#*k!N5(cEb2pll46?ro5psVfu)3_W|kr+ z$1Mj{G+uX}$*%v9BJr3erH)t)1GmS>a=;vKJ*6HZJiG3|oz-ewnwuh!lMr-B>~X{ZSI|u z;{eH8nSBPAFH1H9O>A>xKuU)i&zsVxEe(dV+!{N+eBbrFFEdF%=P2C=uH4pxs+*f^ za{3Gu_hBX9^>WU+t>RD9Ny&1oi>`IU`$nHcv~Io?!BeR9+^5dRcktN}C>|ox9@Bhg z5~UtVp*P(Cz6h=7q-LkV-#$d^rfCYX3u`GewHRhgH6ag!$j+bbmOV--2?n?eYiFv= zK^Qwf&tuVLXgf#Pj zIq8Ks<#N7+K#1(`Wa|L5Wrry@yQ$DDP799{VAf($^gJ zC2Bp|Uo#Nb#J_m`(`Kz7ahj-bLu_|fM&}Xc*!8vBFOj#NmX@x4Q&s8Z9<9`0DVWIo z{a@c(C(AnIk~MEJPMW&I?B6>cvxd*-N#W>L4T8I>ha{s<+hiFoI`O;diTQ>+beNJ9mi# z-fX&43i?Dn@75@F`Ji2BQ)jnF{n5oxQt?QAvVv7}vNq?j6IY$h(Bb+{cAKp0yyTDm z>atsfY&Yi=9doyute)l^ea}qq&_VgHXO`TksT{RKAoh+ym^_7SswS~&FEsN-h1+UT zC4-;{zlzND#%@Gh*7q}lQg-u&8>svC!H5*Q?J&0u^L(6GVe$gDmx{Rlx@+Dv-*EKu z*p6V9n)+R5$^3-=$9%Ps?=wEIF<}|i1NJT+^rzHj8gb6V_6hRGvbzVi6Za-E2k$NN zk4Ki@fvZtd!A{sUYZYWK6G!A^OLv)!?_sK1`r(`N+-3MnfrWcL-n)ywnmv9;Bq~-c zy1U`iLX~bvawXJVCo#P;*K7LL@ox-*YQ3S~`cs#zaWsvR@_iKEd3ccBluqrF zJE7cHqA}ZY`d7o_+C(#!Ua6tniq?M5p=_hPyZD)%5 zBOy{{rc_S;^qZR8lyARx3aCxRn|7pmR7)TlRkYIo^B~<7#=AYyo|cSrWQCXO~+Rut%e%2dC$=CtWqiZYgPhYiZn)xTJN< z-SjYr#mY}t>1yTgaHp?#1G(;E1w?+V8ANz=IkxJIw@`8LMZ)7brK`oW;a3BmLqQKm zoO)&C``~WR&-l>-0eD;&`%j--@J&|8=$i-W%gN~P9I#fEDY>EI?* z*0noTb*96z)(JLQzaH*s1K<+aqI9nzX^ynsP-}W}5Y6^JUA*Dmd2^g|CwRJGeUr!S zis|BLvO*J_)Mn^z3(p&zsnozUtPka)OGdGLM5{nU-io{LBdbWf;q^1~Lc26qQ)2e z&`0odN_}0dvnqawK)|;+Q4nu8_cy87cEQNJfe9(=uzp2oLEt>9Q|H>4&a;1M4-s5{ zY%~RU8Zb7O8#;0sF5R788%ww;3`>qZ(&y5ZJ(zt`_x#c-XKLAW4xGH|K{>O_ufg}= zhm~Ev(68ED+Sz1V;pd9;4ZiHzCyBh0y1&SDmuo@jiSR_L@IIWLvM?@dH zpiKVWe|v#ucgEO1;^3G3Xr2gTM6{svV1c-(zAcHU+Ej2bM9F#`BbX4I^i4%jlhBgu z?y&CN%JxbK>2pW~A23gnJYsNeX$SSs*7@P{H!3f736s)R`8LAu`K1fkH{pJIu}D5T z!QI^WWTG?JbDkNz36(jox1Ql$Dp8#aydgpTJFsDzwVe{^@^^hKl+B9I0J@>FjITi# zDV`=A&jmTJbs&A`*u~9J9U{x--k?9PICOf$rveg29NYr^c0lj3?oWApQ?e5_et@)$ ze&-P`Mc-I$;HSLZs)Us*_-vZUfG&*FQFlG>TVfm_mZnu6RRuoQL9t;4Y5F7-7@T4YF_}4E7xLbZQ5j2 z%`;;fZHY2bERe_yTu^L1<}?{rJvKyV#CKyH|Xf)seC3!S#u_HIj@em9`lA22Q8B z+g~rcUlxkDSD2!LS@E;t!obDO>)IOI#M%x7K5w_MF27$t$)Bsw5qNSrMoYb4IFAnp zvGL3@hM-?brehNYIjvfTpz&U+@nc(7)MKaIjeFn)6!dxXO2hJY;(mg<2>heFtu)L%#G^8 zYEHq-FJHWu$^AwAVDrg{cqTLIN9?UYnc5){?4Px>JL~xqtJBaOLNj}5ExR%`LgblD z6(BkSd1zb}MG|^`N)(m!G7JU%>Ke)9as~I4dMaA5qBZRwVbb(W-L3D*EsrxO0lF(+ zA2*Zr728|ffu0l>`_-9|z>wNirPc#3m{O@b1V$m)1aQbQ==4!NFd|ohCD`Zp+OLaR zG*ME#*GCqLEiNMY78=?a9Ej>~xPtq%Df#?S&bB@q3V?ZBO|2bO;Z-HJ-DGZy0m1$+6ZTKC zgFt3w59=e-t^1Mip#1LuV*;&B@iZ~{O=SVvgro5$RL!Q?!z|VGt5~q?LL1Os9Llz< z{kqQcO9Z;;-e}%M@e)yp<}`_^{xnL|$qk~b`c_3s5U&QNrJ*CeV z+@9X|-v!@qM+CvLhquY_T^J%w`N7eb$&ww$64Q)D!zk9Fv@z8A2!O(n+^hBCv|+nr zdhtTT@~b@*gC)_`F!8(SsD3JMG5ZV678XC$4_3=?--qL0-0 zh(@rnm1_n%!J#4(v@ zxOnun7H&Zns)D&Y27E6V#Eg(^p|q}u=q3!%V!Bm?my>4Rr6bNJ@40}Ihvia zIF__7PwA~LiF>+T*(-nELUW2*T{EDA17upmlo5ATq{ZUugX2!mS5dXBg@JF@b*In* zoepI+rwW2sAAq`z_lz%giQdh2M@%Qh?lQ6YRGZ6S#k;#Lh=pqNt|LVmY%=k|0*d8k zRVnrht1{+yZ}P7@zf#E-SKZw8f<%Zq@3eB(^w^>U{6r|QgJEvtdpyVrv0p{3TjSye z`SFCD){rLc_=y zVpg8n(yr+9K(D}G*rdeVKl>j=Rt?z9K*PPYRT2lG;mUkvyMtV{dl3N2tA_B=>(KB7 zQw>qTLf5)4gY5&V!CYN5$JR{<{m7(+fb9w(fSyONUlBJsIXrLN219W93jS+AlqN>D z|GhX9CorIRZy8|0JQe`$M37&V=^yJZ)>(w(4e)X=C2W znUpj%`mcC9?gFBu(Ouy>1+oQZL3lViHy0@D>7#RoUic#bkJHzjUetlDFGA~h04S<= zpd#JPn%J8E&C=N6)NU@(+T_4IN|y&#B(jVsd`gV=W`4WT%da+OICK9dCBE}>x8Vgu zHjvei3qc>^#CZ-B^(+lkA+fIlchjHR5^0_wE zqbYh3{!c<*($R=EA3@77S7zm~o6Jg|Ak$E`*$A+UVM%K1Tr`1bmT42CjW1Ws9O7R{ zq0z>9ttxc6MRayN)dSgeXD@YlF07wZ#n5y_Ou#`s-`~-s5B+$*R()%a7NTTP1ByFQ zvSe40x(U=lxNE<`Y0fo-jJaS|>sezqi6=N6BRQ3Q>yD1U?bqKde0KY|^sUPRsGCAe zC!;QmJj5}st*wz3Rg)oENIFtTFH^SOg` zj&M@Z>mHu6O|2+#CM0o!iO-vWyUH>oHaF%sA<74|ecr^v;omXc)SdlGE}|p@R>*q& ziGwWD+Zq{LLoEwO?E4P$+vbzA#1QX^_g!q0K95NPQ;rS}q<#IT)qlGqs5xDFSbVNOJf^Xzc$Z(kp(%OcZ_-TI#2IyNnm{jri@G;aQmbBL0xp28)6Q}kR_ds~!jV9Dy!5gZiZ zV<^Ggo?~}Wz0oD41)KEBw8c<1<$A6|LXpG|2NKW7O8i3pB3S}g5UYM)wzHW zLcSrx+iC$Foe0YL@&IdPxZ@91x8>-y%&yvnbdxB?n;f)G}DOldvu9f|uO|u(y zziAo4lU&bmyITD8b6w3?y}g}Tb_APGPn!)CBVdq*jgyj+A|ViBx^VvOyn&tc2^K#D zADJth0+N|jcz`T^6dyNS=d@WPmK=z?))=0lcp&dx{Ead>I2DI&Y1!PLqVnWdwjGwb zYh+Udhkm034kgd#;`?IVDxJBHsD2DW4~wa|xfMq2>i0k9i++qu*pcYdfM`9fWO?~) zS-Cu?v|W>*DaD!lnc7WQoN2O&2>mqrn&0b#_2?^#7B7F99#G>)vwg$2BK!)>oRGr# zh3Ma(Bv03BY#lz$GBSHG8&89#6Z)rtt&_I*D>{_+3>6l=>cXvPN;aeC3|-y$=UTg; z;(N4L$CJ1%0^I6YIyFPQC+oaCq(Th^Ro}<(?n-yO2I@Q*)prPOCu%Te){C@MOr+Vw zD%wYh8E~>n3gT@G{B&sDe8g&i!7%$GC?xF8e26Ca==dOExm{e*EL|HMXng|j{MwU| z)BrL5CPFH>J=z-BQH!!feMC7Th;5hbZ=Dn1u5gh$l`qsAnV7Qi`ImD18uD`S!&9kt z6%nR93W);#3rgpmnsZU&JJiZKL3KF*f6c$ZdY`Ysl{@(k{9w+|?)Fvaz~ zr*u46E6qvtzDW4s*C|OMuorY)MLt45+0R=iO&hF*%&ky)71TciB2r8z+X>u56NhD_TOmhgYvUkyt7Qa+*P&Rh-mej5q7EXz563%X)_ zP>Cgfqh1%@ykjh)$Zw75Q=wO=GP=*L3t0EiYD2>cw1bwn!}?Ai0h86b8O0NRw>iFp zwKk3@yh%ABDolmiPcU#oTtjsBg%rP;BxqIJg-cQ;Xz(1NE(GC+EF3kbfkpIX*4{Cx zlZC1>@8{rX5{IL<^^xO#^EJtFI|%*}oha9kyDR}%Pbjf5#V;zy5nf@%%wjiS=g1^m zjx@1PeCZ|pr=U0R#+k@Z5Qs&iqdT8IN;0zG!NB?9%N7POm#>cI_Y=C;)@Or<^ ziXyty4)w(aokgkIC0mZgjS0Mx0Lf-RM+({RBxArGW;h;b>uMP_-n$YpEo;pvQR7sX zXOPBN%W-La~y4YnWMQQUng9v^&>o=MA4oj0{&ol?J(vzGilto8UMDyD!-{y zT@e?qP$#aKR9_Q+TqJByv?iWC-N=ma<9k81j>qm-`ycZ0GdR$j?RYVq_BYMk8NjlD z+LFo&ZE0-#NoKlsg~{YEe~`9^`fGJCN%SKGpFG?@E0VUOdxoTjK}@>U2HoQ$w@9m7 z4Rg_E=>cO=Vzq47TNfp#M-Qo4?RrzXZUhFZK)yXxY>c{Tab9tcV#CR-m__=Wl;{q1&YovfrL$s3%DpS`)$uY%SmBun>)($`fL# z%$wRZt_UxVUwe#`bk|qFR|Ar5?_c;bv;6Q1Zfs&4G0LffIJzQ9`V#T_#Xp^g^Lv3i zXzPWwrr;nk-Ki3*pQ0#Pkz~>WlG3>tCFSn&yr2KPhTumGq2j;=iDlapv_a)?!JsC40K@qEr+*?^P|X&gkuxzL92WYR6&CU% zqU{ImB#8kxwVpjO775-r%s{Jl&@e%e=ok|6QVrf{S3xFg>A{ek@SHe+>;5`k2WU<< zXA4f)o^>7j(`RKHupq2t8*37zZH*n%eF74&K#2TSB8jQ52x<~ zF7MrYXF8u3mw~T%feLaFvyjcPsjnoVs2~(%5-?yKOTu;1j(H?@P8x(9P)UR}(im0( zrgZ>8cmzf?;j?kdVECX|ISPPzVx0vxLPRT!D#VL66pN2wfXypaF&EzWOTa{^ApG7@ ztalGS@(y-a7xAvRz#9e8dj)>)$SsUq$2WnSuL^J->0s5VHn~*QvHIc(pX>vGbZAGa z92Na>SWnN298*au5c5?_#!k|m9o7-0)lx)|3~~)_ohK$&o~1e7aAg!?8kIUs_z) zI5uwBKrYkS@i2FzwGi>F>BzY5WIA~!V5?TUbMaMrKuuyQJriGvA?IFzwQmcpY|A*^ zG~9AA+sc8~PAEX*#(s>wqgu>Hiw!@>7teKYv1vsOwgT5XrF{=F6~*|>D351v+W|;3 zD$<-?#(9xQ15OYZv((O>&%Lh3>kHZ&DfzrPiFzcZV#<`#MkAME#3P#7yuifoJ%niK zlLa#3p1W%l8OTE0O1f(4d+$Nk)=u~7&T1FmC+Mm=Dh8z?cG(>qax%U{Mdr8t&Z40! zv0vnVTjXZ9&*ot5xPrjVaz+;IMFnboJ*VGHEhgN%8<31J--wcD&75N_gg7+^@Zp)+ z4H2+Dp|en#2j?PkmN6;smL!v?~YqD z;hgil5d1bg*08-t!09M5f{Ks1vSClXb`|MLJy;T3-ok2j~b9?dF~5u%4`L@N+ihwM97vdxrBpw@BjqrAb+=Di^~p zKknszY^>l;SuFBZeypGidB>BAv}CEzRAfsE%lCOK`WN~)^8FdV=L9E*_~q__ugam2k(?hm!jUw(EgFI5)<+nj>b0nGjojwGb35Z8>-NDqStz!qlAV1_Q}P zwb3Rk8SEOHpzs0v*-Mfi+13ojTF8|@D!&|N@c5G5!bd|Z=NhY|IGWU76npyH&u-;!Lxy1dE>Ev^|^3h zE!cHBypACK8sUduO2Iwx=Hq@>;l>p~=6BKIQ6wDSe;81uv#c|;?V2wfUCJ}c!HE9! zey+W`lKlKs^?itTQ_o_UzRc34%?HVqr&T(Ty=d*_jyNU!`5#Ia*4b|_zURI~>2v?o z48UrkYbHY;S+}8SIFP~>Wyr*O@TXPD{I6Q{v&2+f3^+ErkeF&t8#WSxQfvY!NEPm z{WH)BhGhr3ch8u2=a2x4j9=Uhl(l4&UcgVyxl4e)$|S=fLdwb zJ(aU#oPkk%p1pbHntntcyXr4EuK`$9B~u;I1ZWm>cRT>km>7^yBe2pu_B-xPIUWa)3Ji!$phJgi9RYn@A-UI}HA^Of`03X`(w-OQ* zw+#T16_bFLw(%MjG6k?8&2+MUG$z(zpUVE=a%1${>PsF))JF)mW${kxFv|0g+toEH^7If42X z4Zw|vLG{*{plM=akk%>+$b1R#$r2Q}qytVz3kq7o1Le`8f?$?u!2#@ldD6?=;E)`D z;f&B{(6?n)@J#;y6|a`b@c-GyD8c{(6Jh`ZBmTc$!HR;6h5k!K1X-@3fQ(lF;G*h( zRY@!O`2X7L_?O+K=3ml(wmzuw|CKZU7x7v9zeMzpZ=nTOH~uSj8Wa5ev@#2nj{xRB zM^TVDXm?cy+{pTaLi@Mba}5CA=>kG2#Tq!=Hhw;>E}?)MjFuM>gRK3azT z|B5a9_#nnj062W;he!qjhJFT(FQDN6E1~hP7r6Tm(IyN4+T5fC&x!nNhZKbd64*k) z|5t?eFT2E;zr?sLaq!cGzwmyG1OI=WG*mD!{(tealm3!yw<>r- z;>y7S_3fd6>~;X)?|FY!{NGSO_}eHTtU?ro|9MbR5OU$)M)^Y2zx*$|0C0rj4;2R} za+ekyrtAYUf#k~mV+yec0Kc#JP?3R{D*t0(`k|7o{;LY9Cj93a`2VaBEHp4MyN`jP z{GXma?nOaibst1h5Yj#~`1Szk(g!5EbO0rPU|MbB5asK+~Qepld>Hh)Xuai~) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a2bf1313b..a4f0001d2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew.bat b/gradlew.bat index 9618d8d96..62bd9b9cc 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" From e9c38a7190f77613b2a59ded4599a402abf1afd7 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Mon, 1 Jun 2020 19:42:01 +0300 Subject: [PATCH 03/12] Convert root scripts --- build.gradle.kts | 252 ++++++++++++ build.gradle => build1.gradle | 18 +- client-js/package.json | 2 +- firebase-web/build.gradle | 2 +- integration-tests/js-tests/package.json | 2 +- license-report.md | 513 ++++++++++++------------ pom.xml | 42 +- settings.gradle => settings.gradle.kts | 20 +- version.gradle => version.gradle.kts | 14 +- web/build.gradle | 4 +- 10 files changed, 555 insertions(+), 314 deletions(-) create mode 100644 build.gradle.kts rename build.gradle => build1.gradle (94%) rename settings.gradle => settings.gradle.kts (76%) rename version.gradle => version.gradle.kts (79%) diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 000000000..2da1bce5c --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,252 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +import io.spine.gradle.internal.* + +buildscript { + + apply(from = "$rootDir/config/gradle/dependencies.gradle") + apply(from = "$rootDir/version.gradle.kts") + + val resolution = io.spine.gradle.internal.DependencyResolution + val deps = io.spine.gradle.internal.Deps + + resolution.defaultRepositories(repositories) + + val spineBaseVersion: String by extra + + dependencies { + classpath(deps.build.guava) + classpath(deps.build.gradlePlugins.protobuf) + classpath(deps.build.gradlePlugins.errorProne) + classpath("io.spine.tools:spine-model-compiler:$spineBaseVersion") + classpath("io.spine.tools:spine-proto-js-plugin:$spineBaseVersion") + } + + resolution.forceConfiguration(configurations) +} + +plugins { + java + jacoco + idea + pmd + `project-report` + id("net.ltgt.errorprone").version(io.spine.gradle.internal.Deps.versions.errorPronePlugin) + id("com.google.protobuf").version(io.spine.gradle.internal.Deps.versions.protobufPlugin) +} + +extra["credentialsPropertyFile"] = PublishingRepos.cloudRepo.credentials +extra["projectsToPublish"] = listOf("web", "firebase-web") + +allprojects { + apply { + plugin("jacoco") + plugin("idea") + plugin("project-report") + + from("$rootDir/version.gradle.kts") + } + + version = extra["versionToPublish"] + group = "io.spine" +} + +subprojects { + val sourcesRootDir = "$projectDir/src" + val generatedRootDir = "$projectDir/generated" + val generatedJavaDir = "$generatedRootDir/main/java" + val generatedTestJavaDir = "$generatedRootDir/test/java" + val generatedGrpcDir = "$generatedRootDir/main/grpc" + val generatedTestGrpcDir = "$generatedRootDir/test/grpc" + val generatedSpineDir = "$generatedRootDir/main/spine" + val generatedTestSpineDir = "$generatedRootDir/test/spine" + + apply { + plugin("java-library") + plugin("com.google.protobuf") + plugin("net.ltgt.errorprone") + plugin("maven-publish") + plugin("pmd") + + from(Deps.scripts.testOutput(project)) + from(Deps.scripts.javadocOptions(project)) + from(Deps.scripts.javacArgs(project)) + from(Deps.scripts.pmd(project)) + from(Deps.scripts.projectLicenseReport(project)) + } + + java { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + + DependencyResolution.defaultRepositories(repositories) + + val spineBaseVersion: String by extra + val spineCoreVersion: String by extra + + dependencies { + errorprone(Deps.build.errorProneCore) + errorproneJavac(Deps.build.errorProneJavac) + implementation(Deps.build.guava) + implementation(Deps.build.checkerAnnotations) + Deps.build.errorProneAnnotations.forEach { implementation(it) } + testImplementation(Deps.test.guavaTestlib) + Deps.test.junit5Api.forEach { testImplementation(it) } + testImplementation(Deps.test.junit5Runner) + testImplementation(Deps.test.mockito) + testImplementation(Deps.test.hamcrest) // TODO:2020-06-01:dmytro.dashenkov: Retain or remove. + testImplementation("io.spine:spine-testutil-client:$spineCoreVersion") + } + + DependencyResolution.forceConfiguration(configurations) + + configurations.all({ + resolutionStrategy { + + /** + * Force transitive dependencies. + * Common 3rd party dependencies are forced by {@code forceConfiguration()} calls above. + * + * The forced versions are selected as the highest among detected in the version + * conflict. Developers may select a higher version as the dependency in + * this project IFF this dependency is used directly or a newer version + * fixes a security issue. + * + * {@code proto-google-common-protos} starting with version {@code 1.1.0} + * and {@code proto-google-iam-v1} starting with version {@code 0.1.29} + * include Protobuf message definitions alongside with compiled Java. + * This breaks the Spine compiler which searches for all Protobuf definitions + * in classpath, and assumes they implement the Type URLs. + */ + force ( + "io.opencensus:opencensus-api:0.21.0", + "io.opencensus:opencensus-contrib-http-util:0.18.0", + + "io.grpc:grpc-core:${Deps.versions.grpc}", + "io.grpc:grpc-stub:${Deps.versions.grpc}", + "io.grpc:grpc-okhttp:${Deps.versions.grpc}", + "io.grpc:grpc-protobuf:${Deps.versions.grpc}", + "io.grpc:grpc-netty:${Deps.versions.grpc}", + "io.grpc:grpc-context:${Deps.versions.grpc}", + "io.grpc:grpc-stub:${Deps.versions.grpc}", + "io.grpc:grpc-protobuf:${Deps.versions.grpc}", + "io.grpc:grpc-core:${Deps.versions.grpc}", + + "com.google.code.gson:gson:2.7", + "com.google.api:api-common:1.7.0", + "com.google.api.grpc:proto-google-common-protos:1.0.0", + "com.google.api.grpc:proto-google-iam-v1:0.1.28", + + "com.google.cloud:google-cloud-core:1.91.3", + "com.google.api:gax:1.49.1", + + "com.google.oauth-client:google-oauth-client:1.25.0", + + "com.google.auth:google-auth-library-credentials:0.11.0", + "com.google.auth:google-auth-library-oauth2-http:0.11.0", + + "com.google.j2objc:j2objc-annotations:1.3", + + "com.google.http-client:google-http-client:1.29.0", + "com.google.http-client:google-http-client-jackson2:1.29.0", + + "com.google.api-client:google-api-client:1.30.9", + + "org.apache.httpcomponents:httpclient:4.5.5", + + "com.fasterxml.jackson.core:jackson-core:2.9.9", + "commons-collections:commons-collections:3.2.2", + + "io.netty:netty-common:4.1.34.Final", + "io.netty:netty-buffer:4.1.34.Final", + "io.netty:netty-transport:4.1.34.Final", + "io.netty:netty-handler:4.1.34.Final", + "io.netty:netty-codec-http:4.1.34.Final", + + "javax.servlet:javax.servlet-api:3.1.0", // TODO:2020-06-01:dmytro.dashenkov: Use version from Deps. + + "org.eclipse.jetty.orbit:javax.servlet.jsp:2.2.0.v201112011158", + "org.eclipse.jetty.toolchain:jetty-schemas:3.1", + + // Transitive dependencies from `core-java` may have different (older) versions. + "io.spine:spine-base:$spineBaseVersion", + "io.spine:spine-testlib:$spineBaseVersion" + ) + } + }) + + sourceSets { + main { + java.srcDirs(generatedJavaDir, "$sourcesRootDir/main/java", generatedSpineDir) + resources.srcDirs("$sourcesRootDir/main/resources", "$generatedRootDir/main/resources") + } + test { + java.srcDirs(generatedTestJavaDir, "$sourcesRootDir/test/java", generatedTestSpineDir) + resources.srcDirs("$sourcesRootDir/test/resources", "$generatedRootDir/test/resources") + } + } + + tasks.register("sourceJar", Jar::class) { + from(sourceSets.main.get().allJava) + archiveClassifier.set("sources") + } + + tasks.register("testOutputJar", Jar::class) { + from(sourceSets.main.get().output) + archiveClassifier.set("test") + } + + tasks.register("javadocJar", Jar::class) { + from("$projectDir/build/docs/javadoc") + archiveClassifier.set("javadoc") + + dependsOn(tasks.javadoc) + } + + tasks.test { + useJUnitPlatform { + includeEngines("junit-jupiter") + } + } + + idea { + module { + generatedSourceDirs.add(file(generatedJavaDir)) + testSourceDirs.add(file(generatedTestJavaDir)) + isDownloadJavadoc = true + isDownloadSources = true + } + } + + val projectsWithDocs = setOf("client-js", "firebase-web", "web") + if (projectsWithDocs.contains(project.name)) { + apply(from = Deps.scripts.updateGitHubPages(project)) + project.tasks["publish"].dependsOn("${project.path}:updateGitHubPages") + } +} + +apply { + from(Deps.scripts.jacoco(project)) + from(Deps.scripts.publish(project)) + from(Deps.scripts.repoLicenseReport(project)) + from(Deps.scripts.generatePom(project)) +} diff --git a/build.gradle b/build1.gradle similarity index 94% rename from build.gradle rename to build1.gradle index a3146a1b1..c81d1514d 100644 --- a/build.gradle +++ b/build1.gradle @@ -20,20 +20,20 @@ buildscript { final scriptHandler -> apply from: "$rootDir/config/gradle/dependencies.gradle" - apply from: "$rootDir/version.gradle" + apply from: "$rootDir/version.gradle.kts" defaultRepositories(scriptHandler) dependencies { - classpath deps.build.guava - classpath deps.build.gradlePlugins.protobuf - classpath deps.build.gradlePlugins.errorProne - classpath "io.spine.tools:spine-model-compiler:$spineBaseVersion" - classpath "io.spine.tools:spine-proto-js-plugin:$spineBaseVersion" + classpath + classpath + classpath + classpath + classpath } forceConfiguration(scriptHandler) } -apply from: 'version.gradle' +apply from: 'version.gradle.kts' ext { credentialsPropertyFile = 'credentials.properties' @@ -57,7 +57,7 @@ allprojects { subprojects { buildscript { final scriptHandler -> - apply from: "$rootDir/version.gradle" + apply from: "$rootDir/version.gradle.kts" defaultRepositories(scriptHandler) @@ -181,7 +181,7 @@ subprojects { "io.netty:netty-handler:4.1.34.Final", "io.netty:netty-codec-http:4.1.34.Final", - "javax.servlet:javax.servlet-api:$servletApiVersion", // see version.gradle + "javax.servlet:javax.servlet-api:3.1.0", // TODO:2020-06-01:dmytro.dashenkov: Use version from Deps. "org.eclipse.jetty.orbit:javax.servlet.jsp:2.2.0.v201112011158", "org.eclipse.jetty.toolchain:jetty-schemas:3.1", diff --git a/client-js/package.json b/client-js/package.json index 6323339af..0ca6f06cc 100644 --- a/client-js/package.json +++ b/client-js/package.json @@ -1,6 +1,6 @@ { "name": "spine-web", - "version": "1.5.4", + "version": "1.5.14", "license": "Apache-2.0", "description": "A JS client for interacting with Spine applications.", "homepage": "https://spine.io", diff --git a/firebase-web/build.gradle b/firebase-web/build.gradle index 0a6d485e6..c00210229 100644 --- a/firebase-web/build.gradle +++ b/firebase-web/build.gradle @@ -26,7 +26,7 @@ configurations { testRuntime.exclude group: "com.google.protobuf", module: "protobuf-lite" } -apply plugin: spineProtobufPluginId +apply plugin: "io.spine.tools.spine-model-compiler" apply from: deps.scripts.modelCompiler dependencies { diff --git a/integration-tests/js-tests/package.json b/integration-tests/js-tests/package.json index b189d698c..f3f49d3cf 100644 --- a/integration-tests/js-tests/package.json +++ b/integration-tests/js-tests/package.json @@ -1,6 +1,6 @@ { "name": "client-js-tests", - "version": "1.5.4", + "version": "1.5.14", "license": "Apache-2.0", "description": "Tests of a `spine-web` JS library against the Spine-based application.", "scripts": { diff --git a/license-report.md b/license-report.md index 161afa1bf..b14bc8479 100644 --- a/license-report.md +++ b/license-report.md @@ -1,6 +1,6 @@ -# Dependencies of `io.spine:spine-client-js:1.5.4` +# Dependencies of `io.spine:spine-client-js:1.5.14` ## Runtime 1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2 @@ -17,7 +17,7 @@ * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -28,15 +28,11 @@ * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.codehaus.mojo **Name:** animal-sniffer-annotations **Version:** 1.18 - * **POM License: MIT license** - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - ## Compile, tests and tooling 1. **Group:** com.beust **Name:** jcommander **Version:** 1.72 * **POM Project URL:** [http://jcommander.org](http://jcommander.org) @@ -106,11 +102,11 @@ * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -128,29 +124,29 @@ * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -169,27 +165,27 @@ * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -197,10 +193,6 @@ * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -259,7 +251,7 @@ * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -268,7 +260,7 @@ * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -307,23 +299,24 @@ 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 +1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -395,10 +388,10 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Sat May 23 11:10:12 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Jun 01 19:38:37 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -#NPM dependencies of `spine-web@1.5.4` +#NPM dependencies of `spine-web@1.5.14` ## `Production` dependencies: @@ -429,7 +422,7 @@ This report was generated on **Sat May 23 11:10:12 EEST 2020** using [Gradle-Lic 1. **safer-buffer@2.1.2** * Licenses: MIT * Repository: [https://github.com/ChALkeR/safer-buffer](https://github.com/ChALkeR/safer-buffer) -1. **spine-web@1.5.4** +1. **spine-web@1.5.14** * Licenses: Apache-2.0 * Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web) 1. **tslib@1.10.0** @@ -2387,7 +2380,7 @@ This report was generated on **Sat May 23 11:10:12 EEST 2020** using [Gradle-Lic 1. **spdx-satisfies@4.0.1** * Licenses: MIT * Repository: [https://github.com/kemitchell/spdx-satisfies.js](https://github.com/kemitchell/spdx-satisfies.js) -1. **spine-web@1.5.4** +1. **spine-web@1.5.14** * Licenses: Apache-2.0 * Repository: [https://github.com/SpineEventEngine/web](https://github.com/SpineEventEngine/web) 1. **split-string@3.1.0** @@ -2674,12 +2667,12 @@ This report was generated on **Sat May 23 11:10:12 EEST 2020** using [Gradle-Lic * Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs) -This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. +This report was generated on **Mon Jun 01 2020 19:38:40 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. -# Dependencies of `io.spine.gcloud:spine-firebase-web:1.5.4` +# Dependencies of `io.spine.gcloud:spine-firebase-web:1.5.14` ## Runtime 1. **Group:** com.fasterxml.jackson.core **Name:** jackson-annotations **Version:** 2.9.10 @@ -2690,7 +2683,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2742,8 +2735,11 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 - * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 + * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) + * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) + * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -2786,7 +2782,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using 1. **Group:** com.google.errorprone **Name:** error_prone_type_annotations **Version:** 2.3.4 * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2802,7 +2798,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2834,11 +2830,11 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -2850,27 +2846,27 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -2906,10 +2902,6 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2927,6 +2919,10 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 + * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -2945,7 +2941,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -2980,7 +2976,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3040,8 +3036,11 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 - * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 + * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) + * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) + * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -3107,7 +3106,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM Project URL:** [https://github.com/google/error-prone-javac](https://github.com/google/error-prone-javac) * **POM License: GNU General Public License, version 2, with the Classpath Exception** - [http://openjdk.java.net/legal/gplv2+ce.html](http://openjdk.java.net/legal/gplv2+ce.html) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3127,11 +3126,11 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -3162,33 +3161,33 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11 +1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12 * **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) * **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -3215,27 +3214,27 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -3275,10 +3274,6 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3301,6 +3296,10 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 + * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -3350,7 +3349,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3359,7 +3358,7 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -3398,23 +3397,24 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 +1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -3499,12 +3499,12 @@ This report was generated on **Sat May 23 2020 11:10:14 GMT+0300 (EEST)** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Jun 01 19:38:46 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-js-tests:1.5.4` +# Dependencies of `io.spine:spine-js-tests:1.5.14` ## Runtime 1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2 @@ -3521,7 +3521,7 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3532,15 +3532,11 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.codehaus.mojo **Name:** animal-sniffer-annotations **Version:** 1.18 - * **POM License: MIT license** - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) - * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - ## Compile, tests and tooling 1. **Group:** com.beust **Name:** jcommander **Version:** 1.72 * **POM Project URL:** [http://jcommander.org](http://jcommander.org) @@ -3554,7 +3550,7 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3574,8 +3570,11 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/googleapis/googleapis](https://github.com/googleapis/googleapis) * **POM License: Apache-2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 - * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 + * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) + * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) + * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) 1. **Group:** com.google.auto **Name:** auto-common **Version:** 0.10 * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3625,11 +3624,11 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -3647,29 +3646,29 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -3688,27 +3687,27 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -3716,10 +3715,6 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3728,6 +3723,10 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 + * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -3780,7 +3779,7 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3789,7 +3788,7 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -3828,23 +3827,24 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 +1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -3924,12 +3924,12 @@ This report was generated on **Sat May 23 11:10:20 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Jun 01 19:39:00 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-test-app:1.5.4` +# Dependencies of `io.spine:spine-test-app:1.5.14` ## Runtime 1. **Group:** com.fasterxml.jackson.core **Name:** jackson-annotations **Version:** 2.9.10 @@ -3940,7 +3940,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3992,8 +3992,11 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 - * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 + * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) + * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) + * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -4036,7 +4039,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic 1. **Group:** com.google.errorprone **Name:** error_prone_type_annotations **Version:** 2.3.4 * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4052,7 +4055,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4084,11 +4087,11 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -4100,27 +4103,27 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -4156,10 +4159,6 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4177,6 +4176,10 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 + * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.1.0 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -4202,7 +4205,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -4247,7 +4250,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.3 +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-databind **Version:** 2.9.10.4 * **Project URL:** [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4307,8 +4310,11 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic 1. **Group:** com.google.apis **Name:** google-api-services-storage **Version:** v1-rev20190624-1.30.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.77 - * **POM License: Google App Engine Terms of Service** - [http://code.google.com/appengine/terms.html](http://code.google.com/appengine/terms.html) +1. **Group:** com.google.appengine **Name:** appengine-api-1.0-sdk **Version:** 1.9.79 + * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **POM License: CDDL/GPLv2+CE** - [https://javaee.github.io/javamail/LICENSE](https://javaee.github.io/javamail/LICENSE) + * **POM License: Google App Engine Terms of Service** - [https://cloud.google.com/terms/](https://cloud.google.com/terms/) + * **POM License: JSR-000107 JCACHE 2.9 Public Review - Updated Specification License** - [https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt](https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt) 1. **Group:** com.google.auth **Name:** google-auth-library-credentials **Version:** 0.11.0 * **POM License: BSD New license** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) @@ -4374,7 +4380,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/error-prone-javac](https://github.com/google/error-prone-javac) * **POM License: GNU General Public License, version 2, with the Classpath Exception** - [http://openjdk.java.net/legal/gplv2+ce.html](http://openjdk.java.net/legal/gplv2+ce.html) -1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.0 +1. **Group:** com.google.firebase **Name:** firebase-admin **Version:** 6.12.2 * **POM Project URL:** [https://firebase.google.com/](https://firebase.google.com/) * **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4394,11 +4400,11 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -4429,15 +4435,15 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11 +1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12 * **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) * **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -4446,16 +4452,16 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -4494,27 +4500,27 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -4554,10 +4560,6 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-util **Version:** 0.24.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4580,6 +4582,10 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **POM License: CDDL + GPLv2 with classpath exception** - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group:** javax.inject **Name:** javax.inject **Version:** 1 + * **POM Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) + * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group:** javax.servlet **Name:** javax.servlet-api **Version:** 3.0.1 * **Manifest Project URL:** [https://glassfish.dev.java.net](https://glassfish.dev.java.net) * **POM Project URL:** [http://servlet-spec.java.net](http://servlet-spec.java.net) @@ -4703,7 +4709,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://tomcat.apache.org/](https://tomcat.apache.org/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4716,7 +4722,7 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -5335,23 +5341,24 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 +1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -5499,12 +5506,12 @@ This report was generated on **Sat May 23 11:10:31 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Jun 01 19:39:02 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-testutil-web:1.5.4` +# Dependencies of `io.spine:spine-testutil-web:1.5.14` ## Runtime 1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4 @@ -5540,7 +5547,7 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5559,11 +5566,11 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -5575,27 +5582,27 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -5603,10 +5610,6 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5633,7 +5636,7 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -5711,11 +5714,11 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -5733,24 +5736,24 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -5769,27 +5772,27 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -5797,10 +5800,6 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5854,7 +5853,7 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5863,7 +5862,7 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -5902,23 +5901,24 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 +1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -5990,12 +5990,12 @@ This report was generated on **Sat May 23 11:12:12 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Mon Jun 01 19:39:03 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine:spine-web:1.5.4` +# Dependencies of `io.spine:spine-web:1.5.14` ## Runtime 1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4 @@ -6031,7 +6031,7 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6050,11 +6050,11 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) @@ -6066,27 +6066,27 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -6094,10 +6094,6 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6124,7 +6120,7 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -6206,11 +6202,11 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre * **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre +1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava @@ -6228,33 +6224,33 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11 +1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12 * **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) * **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4 * **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.3 +1. **Group:** com.google.protobuf **Name:** protoc **Version:** 3.11.4 * **POM Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth **Name:** truth **Version:** 1.0 +1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0 +1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1 * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0 @@ -6281,27 +6277,27 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1 * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -6313,10 +6309,6 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0 - * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) - * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group:** io.opencensus **Name:** opencensus-contrib-http-util **Version:** 0.18.0 * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6379,7 +6371,7 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) * **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0 +1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0 * **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6388,7 +6380,7 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic * **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1 +1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0 * **Manifest License:** MIT (Not packaged) * **POM Project URL:** [https://checkerframework.org](https://checkerframework.org) * **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -6427,23 +6419,24 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic 1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5 * **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2 +1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found** +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2 +1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) -1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2 +1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2 * **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/) * **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html) @@ -6515,4 +6508,4 @@ This report was generated on **Sat May 23 11:12:13 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Sat May 23 11:12:15 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Mon Jun 01 19:39:05 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file diff --git a/pom.xml b/pom.xml index 2e96dc51c..feaba2b45 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject. io.spine spine-web -1.5.4 +1.5.14 2015 @@ -28,13 +28,13 @@ all modules and does not describe the project structure per-subproject. com.fasterxml.jackson.core jackson-databind - 2.9.10.3 + 2.9.10.4 compile com.google.appengine appengine-api-1.0-sdk - 1.9.77 + 1.9.79 compile @@ -52,19 +52,19 @@ all modules and does not describe the project structure per-subproject. com.google.firebase firebase-admin - 6.12.0 + 6.12.2 compile com.google.guava guava - 28.1-jre + 29.0-jre compile com.google.http-client google-http-client - 1.34.0 + 1.34.2 compile @@ -76,13 +76,13 @@ all modules and does not describe the project structure per-subproject. io.spine spine-server - 1.5.10 + 1.5.14 compile org.checkerframework checker-qual - 3.0.1 + 3.3.0 compile @@ -94,25 +94,25 @@ all modules and does not describe the project structure per-subproject. com.google.guava guava-testlib - 28.1-jre + 29.0-jre test io.spine spine-testutil-client - 1.5.10 + 1.5.14 test io.spine.tools spine-mute-logging - 1.5.11 + 1.5.12 test org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 test @@ -124,19 +124,19 @@ all modules and does not describe the project structure per-subproject. org.junit.jupiter junit-jupiter-api - 5.5.2 + 5.6.2 test org.junit.jupiter junit-jupiter-engine - 5.5.2 + 5.6.2 test org.junit.jupiter junit-jupiter-params - 5.5.2 + 5.6.2 test @@ -158,7 +158,7 @@ all modules and does not describe the project structure per-subproject. com.google.protobuf protoc - 3.11.3 + 3.11.4 io.grpc @@ -168,22 +168,22 @@ all modules and does not describe the project structure per-subproject. io.spine spine-client - 1.5.10 + 1.5.14 io.spine.tools spine-errorprone-checks - 1.5.11 + 1.5.12 io.spine.tools spine-javadoc-filter - 1.5.11 + 1.5.12 io.spine.tools spine-protoc-plugin - 1.5.11 + 1.5.12 javax.servlet @@ -198,7 +198,7 @@ all modules and does not describe the project structure per-subproject. net.sourceforge.pmd pmd-java - 6.20.0 + 6.21.0 org.gretty diff --git a/settings.gradle b/settings.gradle.kts similarity index 76% rename from settings.gradle rename to settings.gradle.kts index 8026b6810..26716bcf8 100644 --- a/settings.gradle +++ b/settings.gradle.kts @@ -18,16 +18,16 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -rootProject.name = 'spine-web' +import java.io.File -include 'web' -include 'firebase-web' +rootProject.name = "spine-web" -include 'client-js' +include("web") +include("firebase-web") +include("testutil-web") +include("client-js") +include("js-tests") +include("test-app") -include 'js-tests' -include 'test-app' - -project(':js-tests').projectDir = "integration-tests/js-tests" as File -project(':test-app').projectDir = "integration-tests/test-app" as File -include 'testutil-web' +project(":js-tests").projectDir = File("integration-tests/js-tests") +project(":test-app").projectDir = File("integration-tests/test-app") diff --git a/version.gradle b/version.gradle.kts similarity index 79% rename from version.gradle rename to version.gradle.kts index aaa28ced3..323e3a7e0 100644 --- a/version.gradle +++ b/version.gradle.kts @@ -18,13 +18,9 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -ext { - spineVersion = '1.5.4' - spineBaseVersion = '1.5.11' - spineCoreVersion = '1.5.10' +val spineBaseVersion: String by extra("1.5.12") +val spineCoreVersion: String by extra("1.5.14") +val spineVersion: String by extra(spineCoreVersion) - versionToPublish = spineVersion - versionToPublishJs = versionToPublish - - servletApiVersion = '3.1.0' -} +val versionToPublish: String by extra(spineVersion) +val versionToPublishJs: String by extra(spineVersion) diff --git a/web/build.gradle b/web/build.gradle index b742fdeb6..ab78dceb6 100644 --- a/web/build.gradle +++ b/web/build.gradle @@ -24,11 +24,11 @@ configurations { testRuntime.exclude group: "com.google.protobuf", module: "protobuf-lite" } -apply plugin: spineProtobufPluginId +apply plugin: "io.spine.tools.spine-model-compiler" apply from: deps.scripts.modelCompiler dependencies { - api "javax.servlet:javax.servlet-api:$servletApiVersion" + api "javax.servlet:javax.servlet-api:3.1.0" // TODO:2020-06-01:dmytro.dashenkov: Use version from Deps. api "io.spine:spine-server:$spineCoreVersion" api deps.build.googleHttpClient From 649af1749b26d2c8acba16e01bb1a342bc2963ea Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Mon, 1 Jun 2020 20:04:53 +0300 Subject: [PATCH 04/12] Declare `servletApi` as an extension property in `Deps.build` --- build.gradle.kts | 16 ++++++----- .../io/spine/gradle/internal/ServletDeps.kt | 27 +++++++++++++++++++ 2 files changed, 36 insertions(+), 7 deletions(-) create mode 100644 buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt diff --git a/build.gradle.kts b/build.gradle.kts index 2da1bce5c..a56b8d74e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,9 @@ buildscript { apply(from = "$rootDir/config/gradle/dependencies.gradle") apply(from = "$rootDir/version.gradle.kts") + @Suppress("RemoveRedundantQualifierName") // Cannot use imports here. val resolution = io.spine.gradle.internal.DependencyResolution + @Suppress("RemoveRedundantQualifierName") // Cannot use imports here. val deps = io.spine.gradle.internal.Deps resolution.defaultRepositories(repositories) @@ -49,7 +51,9 @@ plugins { idea pmd `project-report` + @Suppress("RemoveRedundantQualifierName") // Cannot use imports here. id("net.ltgt.errorprone").version(io.spine.gradle.internal.Deps.versions.errorPronePlugin) + @Suppress("RemoveRedundantQualifierName") // Cannot use imports here. id("com.google.protobuf").version(io.spine.gradle.internal.Deps.versions.protobufPlugin) } @@ -65,7 +69,7 @@ allprojects { from("$rootDir/version.gradle.kts") } - version = extra["versionToPublish"] + version = extra["versionToPublish"]!! group = "io.spine" } @@ -74,8 +78,6 @@ subprojects { val generatedRootDir = "$projectDir/generated" val generatedJavaDir = "$generatedRootDir/main/java" val generatedTestJavaDir = "$generatedRootDir/test/java" - val generatedGrpcDir = "$generatedRootDir/main/grpc" - val generatedTestGrpcDir = "$generatedRootDir/test/grpc" val generatedSpineDir = "$generatedRootDir/main/spine" val generatedTestSpineDir = "$generatedRootDir/test/spine" @@ -113,13 +115,13 @@ subprojects { Deps.test.junit5Api.forEach { testImplementation(it) } testImplementation(Deps.test.junit5Runner) testImplementation(Deps.test.mockito) - testImplementation(Deps.test.hamcrest) // TODO:2020-06-01:dmytro.dashenkov: Retain or remove. + testImplementation(Deps.test.hamcrest) testImplementation("io.spine:spine-testutil-client:$spineCoreVersion") } DependencyResolution.forceConfiguration(configurations) - configurations.all({ + configurations.all { resolutionStrategy { /** @@ -182,7 +184,7 @@ subprojects { "io.netty:netty-handler:4.1.34.Final", "io.netty:netty-codec-http:4.1.34.Final", - "javax.servlet:javax.servlet-api:3.1.0", // TODO:2020-06-01:dmytro.dashenkov: Use version from Deps. + Deps.build.servletApi, "org.eclipse.jetty.orbit:javax.servlet.jsp:2.2.0.v201112011158", "org.eclipse.jetty.toolchain:jetty-schemas:3.1", @@ -192,7 +194,7 @@ subprojects { "io.spine:spine-testlib:$spineBaseVersion" ) } - }) + } sourceSets { main { diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt new file mode 100644 index 000000000..6610df187 --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt @@ -0,0 +1,27 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.gradle.internal + +@Suppress("unused") + // Receiver parameter is never used. We only want to make dependency declaration uniform. +val Build.servletApi: String + get() = "javax.servlet:javax.servlet-api:3.1.0" + From eeb1523df2660252ca94600d9923b83076a550e4 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Mon, 1 Jun 2020 20:48:00 +0300 Subject: [PATCH 05/12] Convert subproject scripts --- build1.gradle | 257 ------------------ .../internal/{ServletDeps.kt => LocalDeps.kt} | 10 +- client-js/build.gradle | 75 ----- client-js/build.gradle.kts | 78 ++++++ .../{build.gradle => build.gradle.kts} | 56 ++-- .../{build.gradle => build.gradle.kts} | 2 +- web/{build.gradle => build.gradle.kts} | 49 ++-- 7 files changed, 147 insertions(+), 380 deletions(-) delete mode 100644 build1.gradle rename buildSrc/src/main/kotlin/io/spine/gradle/internal/{ServletDeps.kt => LocalDeps.kt} (81%) delete mode 100644 client-js/build.gradle create mode 100644 client-js/build.gradle.kts rename firebase-web/{build.gradle => build.gradle.kts} (50%) rename testutil-web/{build.gradle => build.gradle.kts} (96%) rename web/{build.gradle => build.gradle.kts} (51%) diff --git a/build1.gradle b/build1.gradle deleted file mode 100644 index c81d1514d..000000000 --- a/build1.gradle +++ /dev/null @@ -1,257 +0,0 @@ -/* - * Copyright 2020, TeamDev. All rights reserved. - * - * Redistribution and use in source and/or binary forms, with or without - * modification, must retain the above copyright notice and the following - * disclaimer. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -buildscript { final scriptHandler -> - apply from: "$rootDir/config/gradle/dependencies.gradle" - apply from: "$rootDir/version.gradle.kts" - - defaultRepositories(scriptHandler) - dependencies { - classpath - classpath - classpath - classpath - classpath - } - forceConfiguration(scriptHandler) -} - -apply from: 'version.gradle.kts' - -ext { - credentialsPropertyFile = 'credentials.properties' - - projectsToPublish = [ - 'web', - 'firebase-web' - ] -} - -allprojects { - apply plugin: 'maven' - apply plugin: 'jacoco' - apply plugin: 'idea' - apply plugin: 'project-report' - - // Use the same version numbering for the Spine Base library. - version = versionToPublish - group = 'io.spine' -} - -subprojects { - buildscript { final scriptHandler -> - apply from: "$rootDir/version.gradle.kts" - - defaultRepositories(scriptHandler) - - dependencies { - classpath deps.build.guava - } - - forceConfiguration(scriptHandler) - } - - ext { - spineProtobufPluginId = 'io.spine.tools.spine-model-compiler' - - sourcesRootDir = "$projectDir/src" - generatedRootDir = "$projectDir/generated" - - generatedJavaDir = "$generatedRootDir/main/java" - generatedTestJavaDir = "$generatedRootDir/test/java" - - generatedGrpcDir = "$generatedRootDir/main/grpc" - generatedTestGrpcDir = "$generatedRootDir/test/grpc" - - generatedSpineDir = "$generatedRootDir/main/spine" - generatedTestSpineDir = "$generatedRootDir/test/spine" - } - - apply plugin: 'java-library' - apply plugin: 'com.google.protobuf' - apply plugin: 'net.ltgt.errorprone' - apply plugin: 'maven-publish' - apply plugin: 'pmd' - - apply from: deps.scripts.testOutput - apply from: deps.scripts.javadocOptions - apply from: deps.scripts.javacArgs - apply from: deps.scripts.pmd - apply from: deps.scripts.projectLicenseReport - - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 - - defaultRepositories(project) - - dependencies { - errorprone deps.build.errorProneCore - errorproneJavac deps.build.errorProneJavac - - implementation deps.build.guava - implementation deps.build.checkerAnnotations - implementation deps.build.errorProneAnnotations - - testImplementation deps.test.guavaTestlib - testImplementation deps.test.junit5Api - testImplementation deps.test.junit5Runner - testImplementation deps.test.mockito - testImplementation deps.test.hamcrest - testImplementation "io.spine:spine-testutil-client:$spineCoreVersion" - } - - forceConfiguration(project) - configurations.all({ - resolutionStrategy { - - /** - * Force transitive dependencies. - * Common 3rd party dependencies are forced by {@code forceConfiguration()} calls above. - * - * The forced versions are selected as the highest among detected in the version - * conflict. Developers may select a higher version as the dependency in - * this project IFF this dependency is used directly or a newer version - * fixes a security issue. - * - * {@code proto-google-common-protos} starting with version {@code 1.1.0} - * and {@code proto-google-iam-v1} starting with version {@code 0.1.29} - * include Protobuf message definitions alongside with compiled Java. - * This breaks the Spine compiler which searches for all Protobuf definitions - * in classpath, and assumes they implement the Type URLs. - */ - force ( - "io.opencensus:opencensus-api:0.21.0", - "io.opencensus:opencensus-contrib-http-util:0.18.0", - - "io.grpc:grpc-core:$deps.versions.grpc", - "io.grpc:grpc-stub:$deps.versions.grpc", - "io.grpc:grpc-okhttp:$deps.versions.grpc", - "io.grpc:grpc-protobuf:$deps.versions.grpc", - "io.grpc:grpc-netty:$deps.versions.grpc", - "io.grpc:grpc-context:$deps.versions.grpc", - "io.grpc:grpc-stub:$deps.versions.grpc", - "io.grpc:grpc-protobuf:$deps.versions.grpc", - "io.grpc:grpc-core:$deps.versions.grpc", - - "com.google.code.gson:gson:2.7", - "com.google.api:api-common:1.7.0", - "com.google.api.grpc:proto-google-common-protos:1.0.0", - "com.google.api.grpc:proto-google-iam-v1:0.1.28", - - "com.google.cloud:google-cloud-core:1.91.3", - "com.google.api:gax:1.49.1", - - "com.google.oauth-client:google-oauth-client:1.25.0", - - "com.google.auth:google-auth-library-credentials:0.11.0", - "com.google.auth:google-auth-library-oauth2-http:0.11.0", - - "com.google.j2objc:j2objc-annotations:1.3", - - "com.google.http-client:google-http-client:1.29.0", - "com.google.http-client:google-http-client-jackson2:1.29.0", - - "com.google.api-client:google-api-client:1.30.9", - - "org.apache.httpcomponents:httpclient:4.5.5", - - "com.fasterxml.jackson.core:jackson-core:2.9.9", - "commons-collections:commons-collections:3.2.2", - - "io.netty:netty-common:4.1.34.Final", - "io.netty:netty-buffer:4.1.34.Final", - "io.netty:netty-transport:4.1.34.Final", - "io.netty:netty-handler:4.1.34.Final", - "io.netty:netty-codec-http:4.1.34.Final", - - "javax.servlet:javax.servlet-api:3.1.0", // TODO:2020-06-01:dmytro.dashenkov: Use version from Deps. - - "org.eclipse.jetty.orbit:javax.servlet.jsp:2.2.0.v201112011158", - "org.eclipse.jetty.toolchain:jetty-schemas:3.1", - - // Transitive dependencies from `core-java` may have different (older) versions. - "io.spine:spine-base:$spineBaseVersion", - "io.spine:spine-testlib:$spineBaseVersion" - ) - } - }) - - sourceSets { - main { - java.srcDirs generatedJavaDir, "$sourcesRootDir/main/java", generatedSpineDir - resources.srcDirs "$sourcesRootDir/main/resources", "$generatedRootDir/main/resources" - } - test { - java.srcDirs generatedTestJavaDir, "$sourcesRootDir/test/java", generatedTestSpineDir - resources.srcDirs "$sourcesRootDir/test/resources", "$generatedRootDir/test/resources" - } - } - - task sourceJar(type: Jar) { - from sourceSets.main.allJava - archiveClassifier.set("sources") - } - - task testOutputJar(type: Jar) { - from sourceSets.test.output - archiveClassifier.set("test") - } - - task javadocJar(type: Jar, dependsOn: 'javadoc') { - from "$projectDir/build/docs/javadoc" - archiveClassifier.set("javadoc") - } - - test { - useJUnitPlatform { - includeEngines 'junit-jupiter' - } - } - - // Apply the same IDEA module configuration for each of sub-projects. - idea { - module { - generatedSourceDirs += file(generatedJavaDir) - testSourceDirs += file(generatedTestJavaDir) - downloadJavadoc = true - downloadSources = true - - iml { - beforeMerged { final module -> - module.dependencies.clear() - } - whenMerged { final module -> - module.dependencies*.exported = true - } - } - } - } - - final def projectsWithDocs = ['client-js', 'firebase-web', 'web'] - if (projectsWithDocs.contains(project.name)) { - apply from: deps.scripts.updateGitHubPages - project.tasks.getByName('publish').dependsOn("$project.path:updateGitHubPages") - } -} - -apply from: deps.scripts.jacoco -apply from: deps.scripts.publish -apply from: deps.scripts.repoLicenseReport -apply from: deps.scripts.generatePom diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt similarity index 81% rename from buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt rename to buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt index 6610df187..ac490c237 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/ServletDeps.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt @@ -18,10 +18,16 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +// "Receiver parameter is never used." We only want to make dependency declaration uniform. +@file:Suppress("unused") + package io.spine.gradle.internal -@Suppress("unused") - // Receiver parameter is never used. We only want to make dependency declaration uniform. val Build.servletApi: String get() = "javax.servlet:javax.servlet-api:3.1.0" +@Suppress("DEPRECATION") +// SLF4J version. +val Runtime.slf4jJul: String + get() = "org.slf4j:slf4j-jdk14:${Deps.versions.slf4j}" + diff --git a/client-js/build.gradle b/client-js/build.gradle deleted file mode 100644 index 39334331f..000000000 --- a/client-js/build.gradle +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright 2020, TeamDev. All rights reserved. - * - * Redistribution and use in source and/or binary forms, with or without - * modification, must retain the above copyright notice and the following - * disclaimer. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -import com.google.common.io.Files - -apply from: "$rootDir/scripts/js.gradle" - -apply plugin: 'com.google.protobuf' - -dependencies { - protobuf project(':web') - protobuf group: 'io.spine', name: 'spine-client', version: spineCoreVersion, classifier: 'proto' - testProtobuf group: 'io.spine', name: 'spine-client', version: spineCoreVersion, classifier: 'proto' -} - -idea.module { - sourceDirs += file(srcDir) - testSourceDirs += file(testSrcDir) - - excludeDirs += file(nycOutputDir) - excludeDirs += file(genProtoMain) - excludeDirs += file(genProtoTest) - - iml { - beforeMerged { module -> - module.dependencies.clear() - } - whenMerged { module -> - module.dependencies*.exported = true - } - } -} - -sourceSets { - main { - java.srcDirs = [] - resources.srcDirs = [] - } - test { - java.srcDirs = [] - resources.srcDirs = [] - } -} - -// Suppress building the JS project as a Java module. -project.compileJava.enabled = false -project.compileTestJava.enabled = false - -final File jsDocDir = Files.createTempDir() - -task jsDoc(type: Exec) { - commandLine "$projectDir/node_modules/.bin/jsdoc", '-r', '-d', jsDocDir.path, "$projectDir/main/" -} - -afterEvaluate { - generatedDocs += files(jsDocDir) - tasks.updateGitHubPages.dependsOn jsDoc -} diff --git a/client-js/build.gradle.kts b/client-js/build.gradle.kts new file mode 100644 index 000000000..18f0f838e --- /dev/null +++ b/client-js/build.gradle.kts @@ -0,0 +1,78 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +import com.google.common.io.Files +import com.google.common.collect.Lists + + +apply(from = "$rootDir/scripts/js.gradle") + +val spineCoreVersion: String by extra + +dependencies { + protobuf(project(":web")) + protobuf(group = "io.spine", name = "spine-client", version = spineCoreVersion, classifier = "proto") + testProtobuf(group = "io.spine", name = "spine-client", version = spineCoreVersion, classifier = "proto") +} + +idea.module { + sourceDirs.add(file(project.extra["srcDir"])) + testSourceDirs.add(file(project.extra["testSrcDir"])) + + excludeDirs.addAll(files( + project.extra["nycOutputDir"], + project.extra["genProtoMain"], + project.extra["genProtoTest"] + )) +} + + +sourceSets { + main { + java.exclude("**/*.*") + resources.exclude("**/*.*") + } + test { + java.exclude("**/*.*") + resources.exclude("**/*.*") + } +} + +// Suppress building the JS project as a Java module. +tasks.compileJava { + enabled = false +} + +tasks.compileTestJava { + enabled = false +} + +val jsDocDir = Files.createTempDir() + +val jsDoc by tasks.registering(type = Exec::class) { + commandLine("$projectDir/node_modules/.bin/jsdoc", "-r", "-d", jsDocDir.path, "$projectDir/main/") +} + +afterEvaluate { + val generatedDocs = "generatedDocs" + val predefinedDocs = extra[generatedDocs] as Iterable + extra[generatedDocs] = Lists.newArrayList(predefinedDocs).add(file(jsDocDir)) + tasks.getByName("updateGitHubPages").dependsOn(jsDoc) +} diff --git a/firebase-web/build.gradle b/firebase-web/build.gradle.kts similarity index 50% rename from firebase-web/build.gradle rename to firebase-web/build.gradle.kts index c00210229..2a4b2a912 100644 --- a/firebase-web/build.gradle +++ b/firebase-web/build.gradle.kts @@ -18,52 +18,58 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -group 'io.spine.gcloud' +import com.google.protobuf.gradle.* +import io.spine.gradle.internal.DependencyResolution +import io.spine.gradle.internal.Deps +import io.spine.gradle.internal.slf4jJul -configurations { - // Avoid collisions of Java classes defined both in `protobuf-lite` and `protobuf-java` - runtime.exclude group: "com.google.protobuf", module: "protobuf-lite" - testRuntime.exclude group: "com.google.protobuf", module: "protobuf-lite" +plugins { + id("io.spine.tools.spine-model-compiler") } -apply plugin: "io.spine.tools.spine-model-compiler" -apply from: deps.scripts.modelCompiler +apply(from = Deps.scripts.modelCompiler(project)) + +group = "io.spine.gcloud" + +DependencyResolution.excludeProtobufLite(configurations) dependencies { - api project(':web') - api(deps.build.firebaseAdmin) { - exclude group: 'com.google.guava', module: 'guava' - exclude group: 'io.grpc' + api(project(":web")) + api(Deps.build.firebaseAdmin) { + exclude(group = "com.google.guava", module = "guava") + exclude(group = "io.grpc") } - implementation deps.build.jacksonDatabind - implementation deps.build.googleHttpClientApache - implementation deps.build.appengineApi + implementation(Deps.build.jacksonDatabind) + implementation(Deps.build.googleHttpClientApache) + implementation(Deps.build.appengineApi) - // Add an SLF4J binding because it's required by the Firebase Admin SDK. - runtimeOnly "org.slf4j:slf4j-jdk14:$deps.versions.slf4j" + // Required by the Firebase Admin SDK. + runtimeOnly(Deps.runtime.slf4jJul) - testImplementation project(':testutil-web') + testImplementation(project(":testutil-web")) } -task compileProtoToJs { +val compileProtoToJs by tasks.registering { description = "Compiles Protobuf sources into JavaScript." } protobuf { protoc { - artifact = deps.build.protoc + artifact = Deps.build.protoc } generateProtoTasks { - all().each { final task -> + all().forEach { task -> task.builtins { - // For information on JavaScript code generation please see - // https://github.com/google/protobuf/blob/master/js/README.md - js { - option "import_style=commonjs" + id("js") { + // For information on JavaScript code generation please see + // https://github.com/google/protobuf/blob/master/js/README.md + option("import_style=commonjs") } } - compileProtoToJs.dependsOn task + compileProtoToJs { + dependsOn(task) + } } } } diff --git a/testutil-web/build.gradle b/testutil-web/build.gradle.kts similarity index 96% rename from testutil-web/build.gradle rename to testutil-web/build.gradle.kts index 687b20d4b..3cd25f3ee 100644 --- a/testutil-web/build.gradle +++ b/testutil-web/build.gradle.kts @@ -19,5 +19,5 @@ */ dependencies { - implementation project(':web') + implementation(project(":web")) } diff --git a/web/build.gradle b/web/build.gradle.kts similarity index 51% rename from web/build.gradle rename to web/build.gradle.kts index ab78dceb6..be9d5ad55 100644 --- a/web/build.gradle +++ b/web/build.gradle.kts @@ -18,44 +18,53 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -configurations { - // Avoid collisions of Java classes defined both in `protobuf-lite` and `protobuf-java` - runtime.exclude group: "com.google.protobuf", module: "protobuf-lite" - testRuntime.exclude group: "com.google.protobuf", module: "protobuf-lite" +import com.google.protobuf.gradle.* +import io.spine.gradle.internal.DependencyResolution +import io.spine.gradle.internal.Deps +import io.spine.gradle.internal.servletApi + +plugins { + id("io.spine.tools.spine-model-compiler") } -apply plugin: "io.spine.tools.spine-model-compiler" -apply from: deps.scripts.modelCompiler +DependencyResolution.excludeProtobufLite(configurations) + +apply(from = Deps.scripts.modelCompiler(project)) + +val spineBaseVersion: String by extra +val spineCoreVersion: String by extra dependencies { - api "javax.servlet:javax.servlet-api:3.1.0" // TODO:2020-06-01:dmytro.dashenkov: Use version from Deps. - api "io.spine:spine-server:$spineCoreVersion" - api deps.build.googleHttpClient + api(Deps.build.servletApi) + api("io.spine:spine-server:$spineCoreVersion") + api(Deps.build.googleHttpClient) - implementation deps.build.googleHttpClientApache + implementation(Deps.build.googleHttpClientApache) - testImplementation project(':testutil-web') - testImplementation "io.spine.tools:spine-mute-logging:$spineBaseVersion" + testImplementation(project(":testutil-web")) + testImplementation("io.spine.tools:spine-mute-logging:$spineBaseVersion") } -task compileProtoToJs { +val compileProtoToJs by tasks.registering { description = "Compiles Protobuf sources into JavaScript." } protobuf { protoc { - artifact = deps.build.protoc + artifact = Deps.build.protoc } generateProtoTasks { - all().each { final task -> + all().forEach { task -> task.builtins { - // For information on JavaScript code generation please see - // https://github.com/google/protobuf/blob/master/js/README.md - js { - option "import_style=commonjs" + id("js") { + // For information on JavaScript code generation please see + // https://github.com/google/protobuf/blob/master/js/README.md + option("import_style=commonjs") } } - compileProtoToJs.dependsOn task + compileProtoToJs { + dependsOn(task) + } } } } From c2843c52b1b1e763a4be2582f10c5481fa54e8f3 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Tue, 2 Jun 2020 11:44:07 +0300 Subject: [PATCH 06/12] Update scripts in integration tests --- .../{build.gradle => build.gradle.kts} | 108 +++++++++--------- .../{build.gradle => build.gradle.kts} | 21 ++-- license-report.md | 14 +-- 3 files changed, 69 insertions(+), 74 deletions(-) rename integration-tests/js-tests/{build.gradle => build.gradle.kts} (54%) rename integration-tests/test-app/{build.gradle => build.gradle.kts} (71%) diff --git a/integration-tests/js-tests/build.gradle b/integration-tests/js-tests/build.gradle.kts similarity index 54% rename from integration-tests/js-tests/build.gradle rename to integration-tests/js-tests/build.gradle.kts index 69fc508df..3c0efb2e1 100644 --- a/integration-tests/js-tests/build.gradle +++ b/integration-tests/js-tests/build.gradle.kts @@ -18,50 +18,52 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -apply from: "$rootDir/config/gradle/js/build-tasks.gradle" -apply plugin: 'com.google.protobuf' - -ext { - testSrcDir = "$projectDir/test" - genProtoBaseDir = projectDir - genProtoSubDir = "proto" - genProtoTestDir = "$testSrcDir/$genProtoSubDir" - nycOutputDir = "$projectDir/.nyc_output" +import com.google.protobuf.gradle.* +import groovy.lang.Closure +import io.spine.gradle.internal.Deps + +plugins { + id("io.spine.tools.proto-js-plugin") } +apply(from = "$rootDir/config/gradle/js/build-tasks.gradle") + +val testSrcDir: String = "$projectDir/test" +val genProtoBaseDir: String = projectDir.path +val genProtoSubDir: String = "proto" +val genProtoTestDir: String = "$testSrcDir/$genProtoSubDir" +val nycOutputDir: String = "$projectDir/.nyc_output" + dependencies { testProtobuf(project(":test-app")) { - exclude group: 'com.google.firebase' + exclude(group = "com.google.firebase") } } /** * Cleans old module dependencies and build outputs. */ -task deleteCompiled { - description = 'Cleans old module dependencies and build outputs.' - - clean.dependsOn deleteCompiled - - doLast { - delete genProtoTestDir - delete nycOutputDir - } +tasks.register(name = "deleteCompiled", type = Delete::class ) { + description = "Cleans old module dependencies and build outputs." + delete(genProtoTestDir, nycOutputDir) + tasks.clean.get().dependsOn(this) } +val npm: Closure<*> by extra + /** * Installs unpublished artifact of `spine-web` library as a module dependency. * * Creates a symbolic link from globally-installed `spine-web` library to `node_modules` of * the current project. See https://docs.npmjs.com/cli/link for details. */ -task installLinkedLib { - description = 'Install unpublished artifact of `spine-web` library as a module dependency.' +tasks.register("installLinkedLib") { + description = "Install unpublished artifact of `spine-web` library as a module dependency." - dependsOn ':client-js:link' + dependsOn(":client-js:link") doLast { - npm 'run', 'installLinkedLib' + npm.call("run", "installLinkedLib") } } @@ -70,76 +72,68 @@ task installLinkedLib { // See https://github.com/SpineEventEngine/web/issues/96 /** * Runs integration tests of the `spine-web` library against the sample Spine-based application. - * + * * Runs the sample Spine-based application from the `test-app` module before integration * tests and stops it when tests complete. See `./integration-tests/README.MD` for details. */ -task integrationTest { - description = 'Runs integration tests of the `spine-web` library against the sample application.' +tasks.register("integrationTest") { + description = "Runs integration tests of the `spine-web` library against the sample application." - dependsOn build, installLinkedLib, ':test-app:appBeforeIntegrationTest' - finalizedBy ':test-app:appAfterIntegrationTest' + dependsOn("build", "installLinkedLib", ":test-app:appBeforeIntegrationTest") + finalizedBy(":test-app:appAfterIntegrationTest") doLast { - npm 'run', 'test' + npm.call("run", "test") } } -apply plugin: 'io.spine.tools.proto-js-plugin' - protoJs { testGenProtoDir = genProtoTestDir - generateParsersTask().dependsOn compileProtoToJs - buildJs.dependsOn generateParsersTask() + generateParsersTask().dependsOn("compileProtoToJs") + tasks["buildJs"].dependsOn(generateParsersTask()) } protobuf { generatedFilesBaseDir = genProtoBaseDir protoc { - artifact = deps.build.protoc + artifact = Deps.build.protoc } generateProtoTasks { - all().each { final task -> + all().forEach { task -> task.builtins { // Do not use java builtin output in this project. - remove java + remove("java") // For information on JavaScript code generation please see // https://github.com/google/protobuf/blob/master/js/README.md - js { - option "import_style=commonjs" + id("js") { + option("import_style=commonjs") outputSubDir = genProtoSubDir } task.generateDescriptorSet = true - final def testClassifier = task.sourceSet.name == "test" ? "_test" : "" - final def descriptorName = "${project.group}_${project.name}_${project.version}${testClassifier}.desc" - task.descriptorSetOptions.path = "${projectDir}/build/descriptors/${task.sourceSet.name}/${descriptorName}" + val testClassifier = if (task.sourceSet.name == "test") "_test" else "" + val descriptorName = "${project.group}_${project.name}_${project.version}${testClassifier}.desc" + task.descriptorSetOptions.path = groovy.lang.GString.EMPTY.plus("${projectDir}/build/descriptors/${task.sourceSet.name}/${descriptorName}") } - compileProtoToJs.dependsOn task + tasks["compileProtoToJs"].dependsOn(task) } } } idea.module { - testSourceDirs += file(testSrcDir) - - excludeDirs += file(genProtoTestDir) - - iml { - beforeMerged { module -> - module.dependencies.clear() - } - whenMerged { module -> - module.dependencies*.exported = true - } - } + testSourceDirs.add(file(testSrcDir)) + excludeDirs.add(file(genProtoTestDir)) } // Suppress building the JS project as a Java module. -project.compileJava.enabled = false -project.compileTestJava.enabled = false +tasks.compileJava { + enabled = false +} +tasks.compileTestJava { + enabled = false +} // Suppress audit for a test project. -project.auditNodePackages.enabled = false +tasks["auditNodePackages"].enabled = false diff --git a/integration-tests/test-app/build.gradle b/integration-tests/test-app/build.gradle.kts similarity index 71% rename from integration-tests/test-app/build.gradle rename to integration-tests/test-app/build.gradle.kts index db9a5df6e..b7f89c793 100644 --- a/integration-tests/test-app/build.gradle +++ b/integration-tests/test-app/build.gradle.kts @@ -19,26 +19,27 @@ */ plugins { - id 'java' - id 'org.gretty' version '3.0.1' - id "com.github.psxpaul.execfork" version '0.1.12' + id("org.gretty").version("3.0.1") + id("com.github.psxpaul.execfork").version("0.1.12") + id("io.spine.tools.spine-model-compiler") } -apply plugin: 'io.spine.tools.spine-model-compiler' -apply from: "$rootDir/config/gradle/model-compiler.gradle" +apply(from = "$rootDir/config/gradle/model-compiler.gradle") + +val spineCoreVersion: String by extra dependencies { - implementation project(":firebase-web") - implementation "io.spine:spine-server:$spineCoreVersion" + implementation(project(":firebase-web")) + implementation("io.spine:spine-server:$spineCoreVersion") } gretty { - contextPath = '/' + contextPath = "/" httpPort = 8080 debugPort = 5005 debugSuspend = true - jvmArgs = ['-Dio.spine.tests=true', '-Xverify:none'] - servletContainer = 'jetty9' + jvmArgs = listOf("-Dio.spine.tests=true", "-Xverify:none") + servletContainer = "jetty9" managedClassReload = false fastReload = false } diff --git a/license-report.md b/license-report.md index b14bc8479..d1a4a1dd5 100644 --- a/license-report.md +++ b/license-report.md @@ -388,7 +388,7 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Jun 01 19:38:37 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). #NPM dependencies of `spine-web@1.5.14` @@ -2667,7 +2667,7 @@ This report was generated on **Mon Jun 01 19:38:37 EEST 2020** using [Gradle-Lic * Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs) -This report was generated on **Mon Jun 01 2020 19:38:40 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. +This report was generated on **Tue Jun 02 2020 11:37:35 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. @@ -3499,7 +3499,7 @@ This report was generated on **Mon Jun 01 2020 19:38:40 GMT+0300 (EEST)** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Jun 01 19:38:46 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Jun 02 11:37:40 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -3924,7 +3924,7 @@ This report was generated on **Mon Jun 01 19:38:46 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Jun 01 19:39:00 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Jun 02 11:37:52 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5506,7 +5506,7 @@ This report was generated on **Mon Jun 01 19:39:00 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Jun 01 19:39:02 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Jun 02 11:37:55 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5990,7 +5990,7 @@ This report was generated on **Mon Jun 01 19:39:02 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Jun 01 19:39:03 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Jun 02 11:37:55 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -6508,4 +6508,4 @@ This report was generated on **Mon Jun 01 19:39:03 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Jun 01 19:39:05 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Tue Jun 02 11:37:58 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file From 5c9fe45e07569e1ec2a2888cd76d27252f6c85ef Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Tue, 2 Jun 2020 12:12:08 +0300 Subject: [PATCH 07/12] Clean up formatting --- buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt index ac490c237..2901a5f88 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt @@ -26,8 +26,7 @@ package io.spine.gradle.internal val Build.servletApi: String get() = "javax.servlet:javax.servlet-api:3.1.0" -@Suppress("DEPRECATION") -// SLF4J version. +@Suppress("DEPRECATION") // SLF4J version. val Runtime.slf4jJul: String get() = "org.slf4j:slf4j-jdk14:${Deps.versions.slf4j}" From 86a89d544d0131eda3e43762cfbd2656160f4ae6 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Tue, 2 Jun 2020 12:12:08 +0300 Subject: [PATCH 08/12] Clean up formatting --- .../src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt index ac490c237..48ab3419e 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/LocalDeps.kt @@ -26,8 +26,6 @@ package io.spine.gradle.internal val Build.servletApi: String get() = "javax.servlet:javax.servlet-api:3.1.0" -@Suppress("DEPRECATION") -// SLF4J version. val Runtime.slf4jJul: String - get() = "org.slf4j:slf4j-jdk14:${Deps.versions.slf4j}" - + get() = @Suppress("DEPRECATION") // SLF4J version. + "org.slf4j:slf4j-jdk14:${Deps.versions.slf4j}" From 04694f26f24af9c9ab0f71a8efcdf079cd989031 Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Tue, 2 Jun 2020 16:38:30 +0300 Subject: [PATCH 09/12] Apply IncrementGuard plugin --- web/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/build.gradle.kts b/web/build.gradle.kts index be9d5ad55..ecba8937f 100644 --- a/web/build.gradle.kts +++ b/web/build.gradle.kts @@ -21,6 +21,7 @@ import com.google.protobuf.gradle.* import io.spine.gradle.internal.DependencyResolution import io.spine.gradle.internal.Deps +import io.spine.gradle.internal.IncrementGuard import io.spine.gradle.internal.servletApi plugins { @@ -29,6 +30,7 @@ plugins { DependencyResolution.excludeProtobufLite(configurations) +apply() apply(from = Deps.scripts.modelCompiler(project)) val spineBaseVersion: String by extra From 63e1adb18c2ee2c2ba355e31e1741dd748b040da Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Wed, 3 Jun 2020 21:58:27 +0300 Subject: [PATCH 10/12] Update config --- buildSrc/build.gradle.kts | 4 +-- .../gradle/internal/CheckVersionIncrement.kt | 6 ++--- .../spine/gradle/internal/IncrementGuard.kt | 6 ++--- .../io/spine/gradle/internal/RunBuild.kt | 6 +++-- .../kotlin/io/spine/gradle/internal/deps.kt | 26 +++++++++---------- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 7dc929afc..60e0fb21d 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -19,9 +19,7 @@ */ plugins { - // Use Kotlin for `buildSrc`. - // https://kotlinlang.org/docs/reference/using-gradle.html#targeting-the-jvm - kotlin("jvm").version("1.3.72") + `kotlin-dsl` } repositories { diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt index 60709874e..45e02672d 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt @@ -22,9 +22,9 @@ package io.spine.gradle.internal import com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES import com.fasterxml.jackson.dataformat.xml.XmlMapper +import org.gradle.api.DefaultTask import org.gradle.api.GradleException import org.gradle.api.Project -import org.gradle.api.internal.AbstractTask import org.gradle.api.tasks.Input import org.gradle.api.tasks.TaskAction import java.net.URL @@ -33,7 +33,7 @@ import java.net.URL * A task which verifies that the current version of the library has not been published to the given * Maven repository yet. */ -open class CheckVersionIncrement : AbstractTask() { +open class CheckVersionIncrement : DefaultTask() { /** * The Maven repository in which to look for published artifacts. @@ -45,7 +45,7 @@ open class CheckVersionIncrement : AbstractTask() { lateinit var repository: Repository @Input - private val version: String = project.version as String + val version: String = project.version as String @TaskAction private fun fetchAndCheck() { diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt index c227f4988..39190d211 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt @@ -37,10 +37,10 @@ class IncrementGuard : Plugin { override fun apply(target: Project) { val tasks = target.tasks tasks.register(taskName, CheckVersionIncrement::class.java) { - it.repository = PublishingRepos.cloudRepo - tasks.getByName("check").dependsOn(it) + repository = PublishingRepos.cloudRepo + tasks.getByName("check").dependsOn(this) - it.shouldRunAfter("test") + shouldRunAfter("test") } } } diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt index c083ad952..48dd298ef 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt @@ -20,8 +20,9 @@ package io.spine.gradle.internal +import org.gradle.api.DefaultTask import org.gradle.api.GradleException -import org.gradle.api.internal.AbstractTask +import org.gradle.api.tasks.Internal import org.gradle.api.tasks.TaskAction import org.gradle.internal.os.OperatingSystem import java.io.File @@ -35,11 +36,12 @@ import java.io.File * The build writes verbose log into `$directory/build/debug-out.txt`. The error output is written * into `$directory/build/error-out.txt`. */ -open class RunBuild : AbstractTask() { +open class RunBuild : DefaultTask() { /** * Path to the directory which contains a Gradle wrapper script. */ + @Internal lateinit var directory: String @TaskAction diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt index 2636036af..6846093b1 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt @@ -278,12 +278,12 @@ object Deps { object DependencyResolution { fun forceConfiguration(configurations: ConfigurationContainer) { - configurations.all { config -> - config.resolutionStrategy { strategy -> - strategy.failOnVersionConflict() - strategy.cacheChangingModulesFor(0, "seconds") + configurations.all { + resolutionStrategy { + failOnVersionConflict() + cacheChangingModulesFor(0, "seconds") @Suppress("DEPRECATION") // Force SLF4J version. - strategy.force( + force( Deps.build.slf4j, Deps.build.errorProneAnnotations, Deps.build.jsr305Annotations, @@ -329,17 +329,17 @@ object DependencyResolution { fun defaultRepositories(repositories: RepositoryHandler) { repositories.mavenLocal() - repositories.maven { repository -> - repository.url = URI(Repos.spine) - repository.content { descriptor -> - descriptor.includeGroup("io.spine") - descriptor.includeGroup("io.spine.tools") - descriptor.includeGroup("io.spine.gcloud") + repositories.maven { + url = URI(Repos.spine) + content { + includeGroup("io.spine") + includeGroup("io.spine.tools") + includeGroup("io.spine.gcloud") } } repositories.jcenter() - repositories.maven { repository -> - repository.url = URI(Repos.gradlePlugins) + repositories.maven { + url = URI(Repos.gradlePlugins) } } } From 731af1e2e1c53b7e6e170b3149733f733f17604d Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Wed, 3 Jun 2020 22:00:11 +0300 Subject: [PATCH 11/12] Update JS dependencies --- client-js/package.json | 10 +++++----- config | 2 +- integration-tests/js-tests/package.json | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/client-js/package.json b/client-js/package.json index 0ca6f06cc..45d083df9 100644 --- a/client-js/package.json +++ b/client-js/package.json @@ -31,7 +31,7 @@ "base64-js": "^1.3.0", "google-protobuf": "^3.8.0", "isomorphic-fetch": "^2.2.1", - "uuid": "^3.2.1" + "uuid": "^3.4.0" }, "devDependencies": { "@babel/cli": "^7.0.0", @@ -42,13 +42,13 @@ "babel-plugin-module-resolver": "^3.1.1", "babel-plugin-transform-builtin-extend": "^1.1.2", "codecov": "^3.0.0", - "firebase": "^6.2.0", + "firebase": "^7.0.0", "jsdoc": "^3.6.3", "license-checker": "^25.0.1", - "mocha": "^5.2.0", - "nyc": "^14.0.0", + "mocha": "^7.2.0", + "nyc": "^15.0.0", "rxjs": "~6.5.1", - "sinon": "^7.0.0", + "sinon": "^9.0.0", "webpack": "^4.23.1", "webpack-cli": "^3.1.2", "webpack-merge": "^4.1.4" diff --git a/config b/config index d9223f98f..47048aed2 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit d9223f98f58cca6a6c91d3339f0fa6c366e3a00c +Subproject commit 47048aed2a242a17c959577515b0548eb58fb984 diff --git a/integration-tests/js-tests/package.json b/integration-tests/js-tests/package.json index f3f49d3cf..40c2a595f 100644 --- a/integration-tests/js-tests/package.json +++ b/integration-tests/js-tests/package.json @@ -13,10 +13,10 @@ "@babel/register": "^7.0.0", "assert": "^2.0.0", "babel-plugin-module-resolver": "^3.1.1", - "firebase": "^6.2.0", + "firebase": "^7.0.0", "google-protobuf": "^3.8.0", - "mocha": "^5.2.0", + "mocha": "^7.2.0", "rxjs": "~6.5.1", - "uuid": "^3.2.1" + "uuid": "^3.4.0" } } From afc1b76bf93c4dadf86075280da623f947e1434b Mon Sep 17 00:00:00 2001 From: Dmytro Dashenkov Date: Wed, 3 Jun 2020 22:08:50 +0300 Subject: [PATCH 12/12] Update report --- license-report.md | 603 +++++++++++++++++++++++++--------------------- 1 file changed, 333 insertions(+), 270 deletions(-) diff --git a/license-report.md b/license-report.md index d1a4a1dd5..3fa2fb5da 100644 --- a/license-report.md +++ b/license-report.md @@ -388,7 +388,7 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed Jun 03 22:06:24 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). #NPM dependencies of `spine-web@1.5.14` @@ -685,75 +685,102 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **@babel/types@7.8.7** * Licenses: MIT * Repository: [https://github.com/babel/babel/tree/master/packages/babel-types](https://github.com/babel/babel/tree/master/packages/babel-types) -1. **@firebase/app-types@0.4.3** +1. **@firebase/analytics-types@0.3.1** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/app@0.4.17** +1. **@firebase/analytics@0.3.5** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/auth-types@0.8.0** +1. **@firebase/app-types@0.6.1** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/auth@0.12.0** +1. **@firebase/app@0.6.4** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/database-types@0.4.3** +1. **@firebase/auth-interop-types@0.1.5** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/database@0.5.4** +1. **@firebase/auth-types@0.10.1** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/firestore-types@1.5.0** +1. **@firebase/auth@0.14.6** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/firestore@1.5.3** +1. **@firebase/component@0.1.12** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/functions-types@0.3.8** +1. **@firebase/database-types@0.5.1** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/functions@0.4.18** +1. **@firebase/database@0.6.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/installations-types@0.1.2** +1. **@firebase/firestore-types@1.10.3** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/installations@0.2.7** +1. **@firebase/firestore@1.14.6** * Licenses: Apache-2.0 - * Repository: unknown -1. **@firebase/logger@0.1.25** + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/functions-types@0.3.17** + * Licenses: Apache-2.0 + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/functions@0.4.44** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/messaging-types@0.3.2** +1. **@firebase/installations-types@0.3.4** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/messaging@0.4.11** +1. **@firebase/installations@0.4.10** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/performance-types@0.0.3** +1. **@firebase/logger@0.2.4** * Licenses: Apache-2.0 - * Repository: [https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance-types](https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance-types) -1. **@firebase/performance@0.2.19** + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/messaging-types@0.4.5** + * Licenses: Apache-2.0 + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/messaging@0.6.16** * Licenses: Apache-2.0 - * Repository: [https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance](https://github.com/firebase/firebase-js-sdk/tree/master/packages/performance) -1. **@firebase/polyfill@0.3.22** + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/performance-types@0.0.13** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/storage-types@0.3.3** +1. **@firebase/performance@0.3.5** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/storage@0.3.12** +1. **@firebase/polyfill@0.3.36** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/util@0.2.28** +1. **@firebase/remote-config-types@0.1.9** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@firebase/webchannel-wrapper@0.2.26** +1. **@firebase/remote-config@0.1.21** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) -1. **@grpc/proto-loader@0.5.3** +1. **@firebase/storage-types@0.3.12** + * Licenses: Apache-2.0 + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/storage@0.3.34** + * Licenses: Apache-2.0 + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/util@0.2.47** + * Licenses: Apache-2.0 + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@firebase/webchannel-wrapper@0.2.41** + * Licenses: Apache-2.0 + * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **@grpc/grpc-js@0.8.1** + * Licenses: Apache-2.0 + * Repository: [https://github.com/grpc/grpc-node/tree/master/packages/grpc-js](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js) +1. **@grpc/proto-loader@0.5.4** * Licenses: Apache-2.0 * Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node) +1. **@istanbuljs/load-nyc-config@1.1.0** + * Licenses: ISC + * Repository: [https://github.com/istanbuljs/load-nyc-config](https://github.com/istanbuljs/load-nyc-config) +1. **@istanbuljs/schema@0.1.2** + * Licenses: MIT + * Repository: [https://github.com/istanbuljs/schema](https://github.com/istanbuljs/schema) 1. **@protobufjs/aspromise@1.1.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) @@ -784,13 +811,16 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **@protobufjs/utf8@1.1.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) -1. **@sinonjs/commons@1.7.1** +1. **@sinonjs/commons@1.8.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/commons](https://github.com/sinonjs/commons) -1. **@sinonjs/formatio@3.2.2** +1. **@sinonjs/fake-timers@6.0.1** + * Licenses: BSD-3-Clause + * Repository: [https://github.com/sinonjs/fake-timers](https://github.com/sinonjs/fake-timers) +1. **@sinonjs/formatio@5.0.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/formatio](https://github.com/sinonjs/formatio) -1. **@sinonjs/samsam@3.3.3** +1. **@sinonjs/samsam@5.0.3** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/samsam](https://github.com/sinonjs/samsam) 1. **@sinonjs/text-encoding@0.7.1** @@ -799,13 +829,13 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **@tootallnate/once@1.0.0** * Licenses: MIT * Repository: [https://github.com/TooTallNate/once](https://github.com/TooTallNate/once) -1. **@types/bytebuffer@5.0.40** +1. **@types/color-name@1.1.1** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) 1. **@types/long@4.0.1** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) -1. **@types/node@10.17.17** +1. **@types/node@13.13.9** * Licenses: MIT * Repository: [https://github.com/DefinitelyTyped/DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) 1. **@webassemblyjs/ast@1.8.5** @@ -880,6 +910,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **agent-base@6.0.0** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-agent-base](https://github.com/TooTallNate/node-agent-base) +1. **aggregate-error@3.0.1** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/aggregate-error](https://github.com/sindresorhus/aggregate-error) 1. **ajv-errors@1.0.1** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv-errors](https://github.com/epoberezkin/ajv-errors) @@ -889,22 +922,37 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **ajv@6.12.0** * Licenses: MIT * Repository: [https://github.com/epoberezkin/ajv](https://github.com/epoberezkin/ajv) +1. **ansi-colors@3.2.3** + * Licenses: MIT + * Repository: [https://github.com/doowb/ansi-colors](https://github.com/doowb/ansi-colors) 1. **ansi-regex@2.1.1** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) +1. **ansi-regex@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) 1. **ansi-regex@4.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) +1. **ansi-regex@5.0.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/ansi-regex](https://github.com/chalk/ansi-regex) 1. **ansi-styles@2.2.1** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-styles](https://github.com/chalk/ansi-styles) 1. **ansi-styles@3.2.1** * Licenses: MIT * Repository: [https://github.com/chalk/ansi-styles](https://github.com/chalk/ansi-styles) +1. **ansi-styles@4.2.1** + * Licenses: MIT + * Repository: [https://github.com/chalk/ansi-styles](https://github.com/chalk/ansi-styles) 1. **anymatch@2.0.0** * Licenses: ISC * Repository: [https://github.com/micromatch/anymatch](https://github.com/micromatch/anymatch) -1. **append-transform@1.0.0** +1. **anymatch@3.1.1** + * Licenses: ISC + * Repository: [https://github.com/micromatch/anymatch](https://github.com/micromatch/anymatch) +1. **append-transform@2.0.0** * Licenses: MIT * Repository: [https://github.com/istanbuljs/append-transform](https://github.com/istanbuljs/append-transform) 1. **aproba@1.2.0** @@ -913,9 +961,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **archy@1.0.0** * Licenses: MIT * Repository: [https://github.com/substack/node-archy](https://github.com/substack/node-archy) -1. **are-we-there-yet@1.1.5** - * Licenses: ISC - * Repository: [https://github.com/iarna/are-we-there-yet](https://github.com/iarna/are-we-there-yet) 1. **argparse@1.0.10** * Licenses: MIT * Repository: [https://github.com/nodeca/argparse](https://github.com/nodeca/argparse) @@ -934,18 +979,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **array-find-index@1.0.2** * Licenses: MIT * Repository: [https://github.com/sindresorhus/array-find-index](https://github.com/sindresorhus/array-find-index) -1. **array-from@2.1.1** - * Licenses: MIT - * Repository: [https://github.com/studio-b12/array-from](https://github.com/studio-b12/array-from) 1. **array-unique@0.3.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/array-unique](https://github.com/jonschlinkert/array-unique) 1. **asap@2.0.6** * Licenses: MIT * Repository: [https://github.com/kriskowal/asap](https://github.com/kriskowal/asap) -1. **ascli@1.0.1** - * Licenses: Apache-2.0 - * Repository: [https://github.com/dcodeIO/ascli](https://github.com/dcodeIO/ascli) 1. **asn1.js@4.10.1** * Licenses: MIT * Repository: [https://github.com/indutny/asn1.js](https://github.com/indutny/asn1.js) @@ -1006,6 +1045,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **binary-extensions@1.13.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/binary-extensions](https://github.com/sindresorhus/binary-extensions) +1. **binary-extensions@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/binary-extensions](https://github.com/sindresorhus/binary-extensions) 1. **bluebird@3.7.2** * Licenses: MIT * Repository: [https://github.com/petkaantonov/bluebird](https://github.com/petkaantonov/bluebird) @@ -1018,6 +1060,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **braces@2.3.2** * Licenses: MIT * Repository: [https://github.com/micromatch/braces](https://github.com/micromatch/braces) +1. **braces@3.0.2** + * Licenses: MIT + * Repository: [https://github.com/micromatch/braces](https://github.com/micromatch/braces) 1. **brorand@1.1.0** * Licenses: MIT * Repository: [https://github.com/indutny/brorand](https://github.com/indutny/brorand) @@ -1057,21 +1102,15 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **builtin-status-codes@3.0.0** * Licenses: MIT * Repository: [https://github.com/bendrucker/builtin-status-codes](https://github.com/bendrucker/builtin-status-codes) -1. **bytebuffer@5.0.1** - * Licenses: Apache-2.0 - * Repository: [https://github.com/dcodeIO/bytebuffer.js](https://github.com/dcodeIO/bytebuffer.js) 1. **cacache@12.0.3** * Licenses: ISC * Repository: [https://github.com/npm/cacache](https://github.com/npm/cacache) 1. **cache-base@1.0.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/cache-base](https://github.com/jonschlinkert/cache-base) -1. **caching-transform@3.0.2** +1. **caching-transform@4.0.0** * Licenses: MIT * Repository: [https://github.com/istanbuljs/caching-transform](https://github.com/istanbuljs/caching-transform) -1. **camelcase@2.1.1** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) 1. **camelcase@5.3.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/camelcase](https://github.com/sindresorhus/camelcase) @@ -1090,9 +1129,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **chokidar@2.1.8** * Licenses: MIT * Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar) -1. **chownr@1.1.2** - * Licenses: ISC - * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) +1. **chokidar@3.3.0** + * Licenses: MIT + * Repository: [https://github.com/paulmillr/chokidar](https://github.com/paulmillr/chokidar) 1. **chownr@1.1.4** * Licenses: ISC * Repository: [https://github.com/isaacs/chownr](https://github.com/isaacs/chownr) @@ -1105,15 +1144,15 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **class-utils@0.3.6** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/class-utils](https://github.com/jonschlinkert/class-utils) -1. **cliui@3.2.0** +1. **clean-stack@2.2.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/clean-stack](https://github.com/sindresorhus/clean-stack) +1. **cliui@5.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) -1. **cliui@5.0.0** +1. **cliui@6.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/cliui](https://github.com/yargs/cliui) -1. **code-point-at@1.1.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/code-point-at](https://github.com/sindresorhus/code-point-at) 1. **codecov@3.6.5** * Licenses: MIT * Repository: [https://github.com/codecov/codecov-node](https://github.com/codecov/codecov-node) @@ -1123,15 +1162,15 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **color-convert@1.9.3** * Licenses: MIT * Repository: [https://github.com/Qix-/color-convert](https://github.com/Qix-/color-convert) +1. **color-convert@2.0.1** + * Licenses: MIT + * Repository: [https://github.com/Qix-/color-convert](https://github.com/Qix-/color-convert) 1. **color-name@1.1.3** * Licenses: MIT * Repository: [https://github.com/dfcreative/color-name](https://github.com/dfcreative/color-name) -1. **colour@0.7.1** +1. **color-name@1.1.4** * Licenses: MIT - * Repository: [https://github.com/dcodeIO/colour.js](https://github.com/dcodeIO/colour.js) -1. **commander@2.15.1** - * Licenses: MIT - * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) + * Repository: [https://github.com/colorjs/color-name](https://github.com/colorjs/color-name) 1. **commander@2.20.3** * Licenses: MIT * Repository: [https://github.com/tj/commander.js](https://github.com/tj/commander.js) @@ -1153,9 +1192,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **console-browserify@1.2.0** * Licenses: MIT * Repository: [https://github.com/browserify/console-browserify](https://github.com/browserify/console-browserify) -1. **console-control-strings@1.1.0** - * Licenses: ISC - * Repository: [https://github.com/iarna/console-control-strings](https://github.com/iarna/console-control-strings) 1. **constants-browserify@1.0.0** * Licenses: MIT * Repository: [https://github.com/juliangruber/constants-browserify](https://github.com/juliangruber/constants-browserify) @@ -1174,15 +1210,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **core-js@2.6.11** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) -1. **core-js@3.2.1** +1. **core-js@3.6.5** * Licenses: MIT * Repository: [https://github.com/zloirock/core-js](https://github.com/zloirock/core-js) 1. **core-util-is@1.0.2** * Licenses: MIT * Repository: [https://github.com/isaacs/core-util-is](https://github.com/isaacs/core-util-is) -1. **cp-file@6.2.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/cp-file](https://github.com/sindresorhus/cp-file) 1. **create-ecdh@4.0.3** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/createECDH](https://github.com/crypto-browserify/createECDH) @@ -1192,12 +1225,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **create-hmac@1.1.7** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/createHmac](https://github.com/crypto-browserify/createHmac) -1. **cross-spawn@4.0.2** - * Licenses: MIT - * Repository: [https://github.com/IndigoUnited/node-cross-spawn](https://github.com/IndigoUnited/node-cross-spawn) 1. **cross-spawn@6.0.5** * Licenses: MIT * Repository: [https://github.com/moxystudio/node-cross-spawn](https://github.com/moxystudio/node-cross-spawn) +1. **cross-spawn@7.0.3** + * Licenses: MIT + * Repository: [https://github.com/moxystudio/node-cross-spawn](https://github.com/moxystudio/node-cross-spawn) 1. **crypto-browserify@3.12.0** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/crypto-browserify](https://github.com/crypto-browserify/crypto-browserify) @@ -1207,9 +1240,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **debug@2.6.9** * Licenses: MIT * Repository: [https://github.com/visionmedia/debug](https://github.com/visionmedia/debug) -1. **debug@3.1.0** - * Licenses: MIT - * Repository: [https://github.com/visionmedia/debug](https://github.com/visionmedia/debug) 1. **debug@3.2.6** * Licenses: MIT * Repository: [https://github.com/visionmedia/debug](https://github.com/visionmedia/debug) @@ -1225,10 +1255,7 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **decode-uri-component@0.2.0** * Licenses: MIT * Repository: [https://github.com/SamVerschueren/decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) -1. **deep-extend@0.6.0** - * Licenses: MIT - * Repository: [https://github.com/unclechu/node-deep-extend](https://github.com/unclechu/node-deep-extend) -1. **default-require-extensions@2.0.0** +1. **default-require-extensions@3.0.0** * Licenses: MIT * Repository: [https://github.com/avajs/default-require-extensions](https://github.com/avajs/default-require-extensions) 1. **define-properties@1.1.3** @@ -1243,24 +1270,21 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **define-property@2.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/define-property](https://github.com/jonschlinkert/define-property) -1. **delegates@1.0.0** - * Licenses: MIT - * Repository: [https://github.com/visionmedia/node-delegates](https://github.com/visionmedia/node-delegates) 1. **des.js@1.0.1** * Licenses: MIT * Repository: [https://github.com/indutny/des.js](https://github.com/indutny/des.js) 1. **detect-file@1.0.0** * Licenses: MIT * Repository: [https://github.com/doowb/detect-file](https://github.com/doowb/detect-file) -1. **detect-libc@1.0.3** - * Licenses: Apache-2.0 - * Repository: [https://github.com/lovell/detect-libc](https://github.com/lovell/detect-libc) 1. **dezalgo@1.0.3** * Licenses: ISC * Repository: [https://github.com/npm/dezalgo](https://github.com/npm/dezalgo) 1. **diff@3.5.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/kpdecker/jsdiff](https://github.com/kpdecker/jsdiff) +1. **diff@4.0.2** + * Licenses: BSD-3-Clause + * Repository: [https://github.com/kpdecker/jsdiff](https://github.com/kpdecker/jsdiff) 1. **diffie-hellman@5.0.3** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/diffie-hellman](https://github.com/crypto-browserify/diffie-hellman) @@ -1282,6 +1306,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **emoji-regex@7.0.3** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/emoji-regex](https://github.com/mathiasbynens/emoji-regex) +1. **emoji-regex@8.0.0** + * Licenses: MIT + * Repository: [https://github.com/mathiasbynens/emoji-regex](https://github.com/mathiasbynens/emoji-regex) 1. **emojis-list@2.1.0** * Licenses: MIT * Repository: [https://github.com/kikobeats/emojis-list](https://github.com/kikobeats/emojis-list) @@ -1303,9 +1330,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **errno@0.1.7** * Licenses: MIT * Repository: [https://github.com/rvagg/node-errno](https://github.com/rvagg/node-errno) -1. **error-ex@1.3.2** +1. **es-abstract@1.17.5** * Licenses: MIT - * Repository: [https://github.com/qix-/node-error-ex](https://github.com/qix-/node-error-ex) + * Repository: [https://github.com/ljharb/es-abstract](https://github.com/ljharb/es-abstract) +1. **es-to-primitive@1.2.1** + * Licenses: MIT + * Repository: [https://github.com/ljharb/es-to-primitive](https://github.com/ljharb/es-to-primitive) 1. **es6-error@4.1.1** * Licenses: MIT * Repository: [https://github.com/bjyoungblood/es6-error](https://github.com/bjyoungblood/es6-error) @@ -1369,31 +1399,43 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **fill-range@4.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/fill-range](https://github.com/jonschlinkert/fill-range) +1. **fill-range@7.0.1** + * Licenses: MIT + * Repository: [https://github.com/jonschlinkert/fill-range](https://github.com/jonschlinkert/fill-range) 1. **find-babel-config@1.2.0** * Licenses: MIT * Repository: [https://github.com/tleunen/find-babel-config](https://github.com/tleunen/find-babel-config) 1. **find-cache-dir@2.1.0** * Licenses: MIT * Repository: [https://github.com/avajs/find-cache-dir](https://github.com/avajs/find-cache-dir) +1. **find-cache-dir@3.3.1** + * Licenses: MIT + * Repository: [https://github.com/avajs/find-cache-dir](https://github.com/avajs/find-cache-dir) 1. **find-up@2.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/find-up](https://github.com/sindresorhus/find-up) 1. **find-up@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/find-up](https://github.com/sindresorhus/find-up) +1. **find-up@4.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/find-up](https://github.com/sindresorhus/find-up) 1. **findup-sync@3.0.0** * Licenses: MIT * Repository: [https://github.com/gulpjs/findup-sync](https://github.com/gulpjs/findup-sync) -1. **firebase@6.6.2** +1. **firebase@7.14.6** * Licenses: Apache-2.0 * Repository: [https://github.com/firebase/firebase-js-sdk](https://github.com/firebase/firebase-js-sdk) +1. **flat@4.1.0** + * Licenses: BSD-3-Clause + * Repository: [https://github.com/hughsk/flat](https://github.com/hughsk/flat) 1. **flush-write-stream@1.1.1** * Licenses: MIT * Repository: [https://github.com/mafintosh/flush-write-stream](https://github.com/mafintosh/flush-write-stream) 1. **for-in@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/for-in](https://github.com/jonschlinkert/for-in) -1. **foreground-child@1.5.6** +1. **foreground-child@2.0.0** * Licenses: ISC * Repository: [https://github.com/tapjs/foreground-child](https://github.com/tapjs/foreground-child) 1. **fragment-cache@0.2.1** @@ -1402,9 +1444,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **from2@2.3.0** * Licenses: MIT * Repository: [https://github.com/hughsk/from2](https://github.com/hughsk/from2) -1. **fs-minipass@1.2.6** - * Licenses: ISC - * Repository: [https://github.com/npm/fs-minipass](https://github.com/npm/fs-minipass) +1. **fromentries@1.2.0** + * Licenses: MIT + * Repository: [https://github.com/feross/fromentries](https://github.com/feross/fromentries) 1. **fs-readdir-recursive@1.1.0** * Licenses: MIT * Repository: [https://github.com/fs-utils/fs-readdir-recursive](https://github.com/fs-utils/fs-readdir-recursive) @@ -1414,18 +1456,21 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **fs.realpath@1.0.0** * Licenses: ISC * Repository: [https://github.com/isaacs/fs.realpath](https://github.com/isaacs/fs.realpath) +1. **fsevents@2.1.3** + * Licenses: MIT + * Repository: [https://github.com/fsevents/fsevents](https://github.com/fsevents/fsevents) 1. **function-bind@1.1.1** * Licenses: MIT * Repository: [https://github.com/Raynos/function-bind](https://github.com/Raynos/function-bind) -1. **gauge@2.7.4** - * Licenses: ISC - * Repository: [https://github.com/iarna/gauge](https://github.com/iarna/gauge) 1. **gensync@1.0.0-beta.1** * Licenses: MIT * Repository: unknown 1. **get-caller-file@2.0.5** * Licenses: ISC * Repository: [https://github.com/stefanpenner/get-caller-file](https://github.com/stefanpenner/get-caller-file) +1. **get-package-type@0.1.0** + * Licenses: MIT + * Repository: [https://github.com/cfware/get-package-type](https://github.com/cfware/get-package-type) 1. **get-stream@4.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/get-stream](https://github.com/sindresorhus/get-stream) @@ -1435,10 +1480,10 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **glob-parent@3.1.0** * Licenses: ISC * Repository: [https://github.com/es128/glob-parent](https://github.com/es128/glob-parent) -1. **glob@7.1.2** +1. **glob-parent@5.1.1** * Licenses: ISC - * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) -1. **glob@7.1.4** + * Repository: [https://github.com/gulpjs/glob-parent](https://github.com/gulpjs/glob-parent) +1. **glob@7.1.3** * Licenses: ISC * Repository: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) 1. **glob@7.1.6** @@ -1468,21 +1513,18 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **growl@1.10.5** * Licenses: MIT * Repository: [https://github.com/tj/node-growl](https://github.com/tj/node-growl) -1. **grpc@1.23.3** - * Licenses: Apache-2.0 - * Repository: [https://github.com/grpc/grpc-node](https://github.com/grpc/grpc-node) 1. **has-ansi@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/has-ansi](https://github.com/sindresorhus/has-ansi) 1. **has-flag@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/has-flag](https://github.com/sindresorhus/has-flag) +1. **has-flag@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/has-flag](https://github.com/sindresorhus/has-flag) 1. **has-symbols@1.0.1** * Licenses: MIT * Repository: [https://github.com/ljharb/has-symbols](https://github.com/ljharb/has-symbols) -1. **has-unicode@2.0.1** - * Licenses: ISC - * Repository: [https://github.com/iarna/has-unicode](https://github.com/iarna/has-unicode) 1. **has-value@0.3.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/has-value](https://github.com/jonschlinkert/has-value) @@ -1495,16 +1537,19 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **has-values@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/has-values](https://github.com/jonschlinkert/has-values) +1. **has@1.0.3** + * Licenses: MIT + * Repository: [https://github.com/tarruda/has](https://github.com/tarruda/has) 1. **hash-base@3.0.4** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/hash-base](https://github.com/crypto-browserify/hash-base) 1. **hash.js@1.1.7** * Licenses: MIT * Repository: [https://github.com/indutny/hash.js](https://github.com/indutny/hash.js) -1. **hasha@3.0.0** +1. **hasha@5.2.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/hasha](https://github.com/sindresorhus/hasha) -1. **he@1.1.1** +1. **he@1.2.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/he](https://github.com/mathiasbynens/he) 1. **hmac-drbg@1.0.1** @@ -1516,10 +1561,10 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **hosted-git-info@2.8.8** * Licenses: ISC * Repository: [https://github.com/npm/hosted-git-info](https://github.com/npm/hosted-git-info) -1. **html-escaper@2.0.0** +1. **html-escaper@2.0.2** * Licenses: MIT * Repository: [https://github.com/WebReflection/html-escaper](https://github.com/WebReflection/html-escaper) -1. **http-parser-js@0.4.10** +1. **http-parser-js@0.5.2** * Licenses: MIT * Repository: [https://github.com/creationix/http-parser-js](https://github.com/creationix/http-parser-js) 1. **http-proxy-agent@4.0.1** @@ -1531,9 +1576,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **https-proxy-agent@4.0.0** * Licenses: MIT * Repository: [https://github.com/TooTallNate/node-https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) -1. **iconv-lite@0.4.24** - * Licenses: MIT - * Repository: [https://github.com/ashtuchkin/iconv-lite](https://github.com/ashtuchkin/iconv-lite) 1. **idb@3.0.2** * Licenses: ISC * Repository: [https://github.com/jakearchibald/indexeddb-promised](https://github.com/jakearchibald/indexeddb-promised) @@ -1543,9 +1585,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **iferr@0.1.5** * Licenses: MIT * Repository: [https://github.com/shesek/iferr](https://github.com/shesek/iferr) -1. **ignore-walk@3.0.1** - * Licenses: ISC - * Repository: [https://github.com/isaacs/ignore-walk](https://github.com/isaacs/ignore-walk) 1. **ignore-walk@3.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/ignore-walk](https://github.com/isaacs/ignore-walk) @@ -1555,6 +1594,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **imurmurhash@0.1.4** * Licenses: MIT * Repository: [https://github.com/jensyt/imurmurhash-js](https://github.com/jensyt/imurmurhash-js) +1. **indent-string@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/indent-string](https://github.com/sindresorhus/indent-string) 1. **infer-owner@1.0.4** * Licenses: ISC * Repository: [https://github.com/npm/infer-owner](https://github.com/npm/infer-owner) @@ -1579,9 +1621,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **invariant@2.2.4** * Licenses: MIT * Repository: [https://github.com/zertosh/invariant](https://github.com/zertosh/invariant) -1. **invert-kv@1.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/invert-kv](https://github.com/sindresorhus/invert-kv) 1. **invert-kv@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/invert-kv](https://github.com/sindresorhus/invert-kv) @@ -1591,21 +1630,30 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **is-accessor-descriptor@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-accessor-descriptor](https://github.com/jonschlinkert/is-accessor-descriptor) -1. **is-arrayish@0.2.1** - * Licenses: MIT - * Repository: [https://github.com/qix-/node-is-arrayish](https://github.com/qix-/node-is-arrayish) 1. **is-binary-path@1.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/is-binary-path](https://github.com/sindresorhus/is-binary-path) +1. **is-binary-path@2.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/is-binary-path](https://github.com/sindresorhus/is-binary-path) 1. **is-buffer@1.1.6** * Licenses: MIT * Repository: [https://github.com/feross/is-buffer](https://github.com/feross/is-buffer) +1. **is-buffer@2.0.4** + * Licenses: MIT + * Repository: [https://github.com/feross/is-buffer](https://github.com/feross/is-buffer) +1. **is-callable@1.2.0** + * Licenses: MIT + * Repository: [https://github.com/ljharb/is-callable](https://github.com/ljharb/is-callable) 1. **is-data-descriptor@0.1.4** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-data-descriptor](https://github.com/jonschlinkert/is-data-descriptor) 1. **is-data-descriptor@1.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-data-descriptor](https://github.com/jonschlinkert/is-data-descriptor) +1. **is-date-object@1.0.2** + * Licenses: MIT + * Repository: [https://github.com/ljharb/is-date-object](https://github.com/ljharb/is-date-object) 1. **is-descriptor@0.1.6** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-descriptor](https://github.com/jonschlinkert/is-descriptor) @@ -1621,10 +1669,10 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **is-extglob@2.1.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-extglob](https://github.com/jonschlinkert/is-extglob) -1. **is-fullwidth-code-point@1.0.0** +1. **is-fullwidth-code-point@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/is-fullwidth-code-point](https://github.com/sindresorhus/is-fullwidth-code-point) -1. **is-fullwidth-code-point@2.0.0** +1. **is-fullwidth-code-point@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/is-fullwidth-code-point](https://github.com/sindresorhus/is-fullwidth-code-point) 1. **is-glob@3.1.0** @@ -1636,9 +1684,24 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **is-number@3.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-number](https://github.com/jonschlinkert/is-number) +1. **is-number@7.0.0** + * Licenses: MIT + * Repository: [https://github.com/jonschlinkert/is-number](https://github.com/jonschlinkert/is-number) 1. **is-plain-object@2.0.4** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-plain-object](https://github.com/jonschlinkert/is-plain-object) +1. **is-regex@1.0.5** + * Licenses: MIT + * Repository: [https://github.com/ljharb/is-regex](https://github.com/ljharb/is-regex) +1. **is-stream@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/is-stream](https://github.com/sindresorhus/is-stream) +1. **is-symbol@1.0.3** + * Licenses: MIT + * Repository: [https://github.com/inspect-js/is-symbol](https://github.com/inspect-js/is-symbol) +1. **is-typedarray@1.0.0** + * Licenses: MIT + * Repository: [https://github.com/hughsk/is-typedarray](https://github.com/hughsk/is-typedarray) 1. **is-windows@1.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/is-windows](https://github.com/jonschlinkert/is-windows) @@ -1660,22 +1723,25 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **isobject@3.0.1** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/isobject](https://github.com/jonschlinkert/isobject) -1. **istanbul-lib-coverage@2.0.5** +1. **istanbul-lib-coverage@3.0.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **istanbul-lib-hook@2.0.7** +1. **istanbul-lib-hook@3.0.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **istanbul-lib-instrument@3.3.0** +1. **istanbul-lib-instrument@4.0.3** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **istanbul-lib-report@2.0.8** +1. **istanbul-lib-processinfo@2.0.2** + * Licenses: ISC + * Repository: [https://github.com/istanbuljs/istanbul-lib-processinfo](https://github.com/istanbuljs/istanbul-lib-processinfo) +1. **istanbul-lib-report@3.0.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **istanbul-lib-source-maps@3.0.6** +1. **istanbul-lib-source-maps@4.0.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) -1. **istanbul-reports@2.2.7** +1. **istanbul-reports@3.0.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) 1. **js-tokens@3.0.2** @@ -1732,9 +1798,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **klaw@3.0.0** * Licenses: MIT * Repository: [https://github.com/jprichardson/node-klaw](https://github.com/jprichardson/node-klaw) -1. **lcid@1.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/lcid](https://github.com/sindresorhus/lcid) 1. **lcid@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/lcid](https://github.com/sindresorhus/lcid) @@ -1750,9 +1813,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **linkify-it@2.2.0** * Licenses: MIT * Repository: [https://github.com/markdown-it/linkify-it](https://github.com/markdown-it/linkify-it) -1. **load-json-file@4.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/load-json-file](https://github.com/sindresorhus/load-json-file) 1. **loader-runner@2.4.0** * Licenses: MIT * Repository: [https://github.com/webpack/loader-runner](https://github.com/webpack/loader-runner) @@ -1768,42 +1828,39 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **locate-path@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/locate-path](https://github.com/sindresorhus/locate-path) +1. **locate-path@5.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/locate-path](https://github.com/sindresorhus/locate-path) 1. **lodash.camelcase@4.3.0** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) -1. **lodash.clone@4.5.0** +1. **lodash.flattendeep@4.4.0** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) -1. **lodash.flattendeep@4.4.0** +1. **lodash.get@4.4.2** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) 1. **lodash@4.17.15** * Licenses: MIT * Repository: [https://github.com/lodash/lodash](https://github.com/lodash/lodash) -1. **lolex@4.2.0** - * Licenses: BSD-3-Clause - * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) -1. **lolex@5.1.2** - * Licenses: BSD-3-Clause - * Repository: [https://github.com/sinonjs/lolex](https://github.com/sinonjs/lolex) -1. **long@3.2.0** - * Licenses: Apache-2.0 - * Repository: [https://github.com/dcodeIO/long.js](https://github.com/dcodeIO/long.js) +1. **log-symbols@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/log-symbols](https://github.com/sindresorhus/log-symbols) 1. **long@4.0.0** * Licenses: Apache-2.0 * Repository: [https://github.com/dcodeIO/long.js](https://github.com/dcodeIO/long.js) 1. **loose-envify@1.4.0** * Licenses: MIT * Repository: [https://github.com/zertosh/loose-envify](https://github.com/zertosh/loose-envify) -1. **lru-cache@4.1.5** - * Licenses: ISC - * Repository: [https://github.com/isaacs/node-lru-cache](https://github.com/isaacs/node-lru-cache) 1. **lru-cache@5.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/node-lru-cache](https://github.com/isaacs/node-lru-cache) 1. **make-dir@2.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/make-dir](https://github.com/sindresorhus/make-dir) +1. **make-dir@3.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/make-dir](https://github.com/sindresorhus/make-dir) 1. **mamacro@0.0.3** * Licenses: MIT * Repository: unknown @@ -1840,9 +1897,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **memory-fs@0.5.0** * Licenses: MIT * Repository: [https://github.com/webpack/memory-fs](https://github.com/webpack/memory-fs) -1. **merge-source-map@1.1.0** - * Licenses: MIT - * Repository: [https://github.com/keik/merge-source-map](https://github.com/keik/merge-source-map) 1. **micromatch@3.1.10** * Licenses: MIT * Repository: [https://github.com/micromatch/micromatch](https://github.com/micromatch/micromatch) @@ -1864,18 +1918,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **minimist@0.0.8** * Licenses: MIT * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) -1. **minimist@1.2.0** - * Licenses: MIT - * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) 1. **minimist@1.2.5** * Licenses: MIT * Repository: [https://github.com/substack/minimist](https://github.com/substack/minimist) -1. **minipass@2.3.5** - * Licenses: ISC - * Repository: [https://github.com/isaacs/minipass](https://github.com/isaacs/minipass) -1. **minizlib@1.2.1** - * Licenses: MIT - * Repository: [https://github.com/isaacs/minizlib](https://github.com/isaacs/minizlib) 1. **mississippi@3.0.0** * Licenses: BSD-2-Clause * Repository: [https://github.com/maxogden/mississippi](https://github.com/maxogden/mississippi) @@ -1885,7 +1930,10 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **mkdirp@0.5.1** * Licenses: MIT * Repository: [https://github.com/substack/node-mkdirp](https://github.com/substack/node-mkdirp) -1. **mocha@5.2.0** +1. **mkdirp@0.5.5** + * Licenses: MIT + * Repository: [https://github.com/substack/node-mkdirp](https://github.com/substack/node-mkdirp) +1. **mocha@7.2.0** * Licenses: MIT * Repository: [https://github.com/mochajs/mocha](https://github.com/mochajs/mocha) 1. **move-concurrently@1.0.1** @@ -1894,30 +1942,27 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **ms@2.0.0** * Licenses: MIT * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) -1. **ms@2.1.2** +1. **ms@2.1.1** * Licenses: MIT * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) -1. **nan@2.14.0** +1. **ms@2.1.2** * Licenses: MIT - * Repository: [https://github.com/nodejs/nan](https://github.com/nodejs/nan) + * Repository: [https://github.com/zeit/ms](https://github.com/zeit/ms) 1. **nanomatch@1.2.13** * Licenses: MIT * Repository: [https://github.com/micromatch/nanomatch](https://github.com/micromatch/nanomatch) -1. **needle@2.4.0** - * Licenses: MIT - * Repository: [https://github.com/tomas/needle](https://github.com/tomas/needle) 1. **neo-async@2.6.1** * Licenses: MIT * Repository: [https://github.com/suguru03/neo-async](https://github.com/suguru03/neo-async) -1. **nested-error-stacks@2.1.0** - * Licenses: MIT - * Repository: [https://github.com/mdlavin/nested-error-stacks](https://github.com/mdlavin/nested-error-stacks) 1. **nice-try@1.0.5** * Licenses: MIT * Repository: [https://github.com/electerious/nice-try](https://github.com/electerious/nice-try) -1. **nise@1.5.3** +1. **nise@4.0.3** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/nise](https://github.com/sinonjs/nise) +1. **node-environment-flags@1.0.6** + * Licenses: Apache-2.0 + * Repository: [https://github.com/boneskull/node-environment-flags](https://github.com/boneskull/node-environment-flags) 1. **node-fetch@2.6.0** * Licenses: MIT * Repository: [https://github.com/bitinn/node-fetch](https://github.com/bitinn/node-fetch) @@ -1927,15 +1972,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **node-modules-regexp@1.0.0** * Licenses: MIT * Repository: [https://github.com/jamestalmage/node-modules-regexp](https://github.com/jamestalmage/node-modules-regexp) -1. **node-pre-gyp@0.13.0** - * Licenses: BSD-3-Clause - * Repository: [https://github.com/mapbox/node-pre-gyp](https://github.com/mapbox/node-pre-gyp) +1. **node-preload@0.2.1** + * Licenses: MIT + * Repository: [https://github.com/cfware/node-preload](https://github.com/cfware/node-preload) 1. **node-releases@1.1.52** * Licenses: MIT * Repository: [https://github.com/chicoxyzzy/node-releases](https://github.com/chicoxyzzy/node-releases) -1. **nopt@4.0.1** - * Licenses: ISC - * Repository: [https://github.com/npm/nopt](https://github.com/npm/nopt) 1. **nopt@4.0.3** * Licenses: ISC * Repository: [https://github.com/npm/nopt](https://github.com/npm/nopt) @@ -1948,25 +1990,13 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **normalize-path@3.0.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/normalize-path](https://github.com/jonschlinkert/normalize-path) -1. **npm-bundled@1.0.6** - * Licenses: ISC - * Repository: [https://github.com/npm/npm-bundled](https://github.com/npm/npm-bundled) 1. **npm-normalize-package-bin@1.0.1** * Licenses: ISC * Repository: [https://github.com/npm/npm-normalize-package-bin](https://github.com/npm/npm-normalize-package-bin) -1. **npm-packlist@1.4.4** - * Licenses: ISC - * Repository: [https://github.com/npm/npm-packlist](https://github.com/npm/npm-packlist) 1. **npm-run-path@2.0.2** * Licenses: MIT * Repository: [https://github.com/sindresorhus/npm-run-path](https://github.com/sindresorhus/npm-run-path) -1. **npmlog@4.1.2** - * Licenses: ISC - * Repository: [https://github.com/npm/npmlog](https://github.com/npm/npmlog) -1. **number-is-nan@1.0.1** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/number-is-nan](https://github.com/sindresorhus/number-is-nan) -1. **nyc@14.1.1** +1. **nyc@15.1.0** * Licenses: ISC * Repository: [https://github.com/istanbuljs/nyc](https://github.com/istanbuljs/nyc) 1. **object-assign@4.1.1** @@ -1975,6 +2005,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **object-copy@0.1.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/object-copy](https://github.com/jonschlinkert/object-copy) +1. **object-inspect@1.7.0** + * Licenses: MIT + * Repository: [https://github.com/substack/object-inspect](https://github.com/substack/object-inspect) 1. **object-keys@1.1.1** * Licenses: MIT * Repository: [https://github.com/ljharb/object-keys](https://github.com/ljharb/object-keys) @@ -1984,24 +2017,21 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **object.assign@4.1.0** * Licenses: MIT * Repository: [https://github.com/ljharb/object.assign](https://github.com/ljharb/object.assign) +1. **object.getownpropertydescriptors@2.1.0** + * Licenses: MIT + * Repository: [https://github.com/es-shims/object.getownpropertydescriptors](https://github.com/es-shims/object.getownpropertydescriptors) 1. **object.pick@1.3.0** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/object.pick](https://github.com/jonschlinkert/object.pick) 1. **once@1.4.0** * Licenses: ISC * Repository: [https://github.com/isaacs/once](https://github.com/isaacs/once) -1. **optjs@3.2.2** - * Licenses: MIT - * Repository: [https://github.com/dcodeIO/opt.js](https://github.com/dcodeIO/opt.js) 1. **os-browserify@0.3.0** * Licenses: MIT * Repository: [https://github.com/CoderPuppy/os-browserify](https://github.com/CoderPuppy/os-browserify) 1. **os-homedir@1.0.2** * Licenses: MIT * Repository: [https://github.com/sindresorhus/os-homedir](https://github.com/sindresorhus/os-homedir) -1. **os-locale@1.4.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/os-locale](https://github.com/sindresorhus/os-locale) 1. **os-locale@3.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/os-locale](https://github.com/sindresorhus/os-locale) @@ -2032,13 +2062,19 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **p-locate@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-locate](https://github.com/sindresorhus/p-locate) +1. **p-locate@4.1.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/p-locate](https://github.com/sindresorhus/p-locate) +1. **p-map@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/p-map](https://github.com/sindresorhus/p-map) 1. **p-try@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) 1. **p-try@2.2.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/p-try](https://github.com/sindresorhus/p-try) -1. **package-hash@3.0.0** +1. **package-hash@4.0.0** * Licenses: ISC * Repository: [https://github.com/novemberborn/package-hash](https://github.com/novemberborn/package-hash) 1. **pako@1.0.11** @@ -2050,9 +2086,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **parse-asn1@5.1.5** * Licenses: ISC * Repository: [https://github.com/crypto-browserify/parse-asn1](https://github.com/crypto-browserify/parse-asn1) -1. **parse-json@4.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/parse-json](https://github.com/sindresorhus/parse-json) 1. **parse-passwd@1.0.0** * Licenses: MIT * Repository: [https://github.com/doowb/parse-passwd](https://github.com/doowb/parse-passwd) @@ -2068,27 +2101,30 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **path-exists@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/path-exists](https://github.com/sindresorhus/path-exists) +1. **path-exists@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/path-exists](https://github.com/sindresorhus/path-exists) 1. **path-is-absolute@1.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/path-is-absolute](https://github.com/sindresorhus/path-is-absolute) 1. **path-key@2.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/path-key](https://github.com/sindresorhus/path-key) +1. **path-key@3.1.1** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/path-key](https://github.com/sindresorhus/path-key) 1. **path-parse@1.0.6** * Licenses: MIT * Repository: [https://github.com/jbgutierrez/path-parse](https://github.com/jbgutierrez/path-parse) 1. **path-to-regexp@1.8.0** * Licenses: MIT * Repository: [https://github.com/pillarjs/path-to-regexp](https://github.com/pillarjs/path-to-regexp) -1. **path-type@3.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/path-type](https://github.com/sindresorhus/path-type) 1. **pbkdf2@3.0.17** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/pbkdf2](https://github.com/crypto-browserify/pbkdf2) -1. **pify@3.0.0** +1. **picomatch@2.2.2** * Licenses: MIT - * Repository: [https://github.com/sindresorhus/pify](https://github.com/sindresorhus/pify) + * Repository: [https://github.com/micromatch/picomatch](https://github.com/micromatch/picomatch) 1. **pify@4.0.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/pify](https://github.com/sindresorhus/pify) @@ -2098,6 +2134,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **pkg-dir@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/pkg-dir](https://github.com/sindresorhus/pkg-dir) +1. **pkg-dir@4.2.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/pkg-dir](https://github.com/sindresorhus/pkg-dir) 1. **pkg-up@2.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/pkg-up](https://github.com/sindresorhus/pkg-up) @@ -2110,6 +2149,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **process-nextick-args@2.0.1** * Licenses: MIT * Repository: [https://github.com/calvinmetcalf/process-nextick-args](https://github.com/calvinmetcalf/process-nextick-args) +1. **process-on-spawn@1.0.0** + * Licenses: MIT + * Repository: [https://github.com/cfware/process-on-spawn](https://github.com/cfware/process-on-spawn) 1. **process@0.11.10** * Licenses: MIT * Repository: [https://github.com/shtylman/node-process](https://github.com/shtylman/node-process) @@ -2119,18 +2161,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **promise-polyfill@8.1.3** * Licenses: MIT * Repository: [https://github.com/taylorhakes/promise-polyfill](https://github.com/taylorhakes/promise-polyfill) -1. **protobufjs@5.0.3** - * Licenses: Apache-2.0 - * Repository: [https://github.com/dcodeIO/protobuf.js](https://github.com/dcodeIO/protobuf.js) -1. **protobufjs@6.8.9** +1. **protobufjs@6.9.0** * Licenses: BSD-3-Clause * Repository: [https://github.com/protobufjs/protobuf.js](https://github.com/protobufjs/protobuf.js) 1. **prr@1.0.1** * Licenses: MIT * Repository: [https://github.com/rvagg/prr](https://github.com/rvagg/prr) -1. **pseudomap@1.0.2** - * Licenses: ISC - * Repository: [https://github.com/isaacs/pseudomap](https://github.com/isaacs/pseudomap) 1. **public-encrypt@4.0.3** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/publicEncrypt](https://github.com/crypto-browserify/publicEncrypt) @@ -2164,24 +2200,12 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **randomfill@1.0.4** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/randomfill](https://github.com/crypto-browserify/randomfill) -1. **rc@1.2.8** - * Licenses: (BSD-2-Clause OR MIT OR Apache-2.0) - * Repository: [https://github.com/dominictarr/rc](https://github.com/dominictarr/rc) 1. **read-installed@4.0.3** * Licenses: ISC * Repository: [https://github.com/isaacs/read-installed](https://github.com/isaacs/read-installed) 1. **read-package-json@2.1.1** * Licenses: ISC * Repository: [https://github.com/npm/read-package-json](https://github.com/npm/read-package-json) -1. **read-pkg-up@4.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/read-pkg-up](https://github.com/sindresorhus/read-pkg-up) -1. **read-pkg@3.0.0** - * Licenses: MIT - * Repository: [https://github.com/sindresorhus/read-pkg](https://github.com/sindresorhus/read-pkg) -1. **readable-stream@2.3.6** - * Licenses: MIT - * Repository: [https://github.com/nodejs/readable-stream](https://github.com/nodejs/readable-stream) 1. **readable-stream@2.3.7** * Licenses: MIT * Repository: [https://github.com/nodejs/readable-stream](https://github.com/nodejs/readable-stream) @@ -2191,6 +2215,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **readdirp@2.2.1** * Licenses: MIT * Repository: [https://github.com/paulmillr/readdirp](https://github.com/paulmillr/readdirp) +1. **readdirp@3.2.0** + * Licenses: MIT + * Repository: [https://github.com/paulmillr/readdirp](https://github.com/paulmillr/readdirp) 1. **regenerate-unicode-properties@8.2.0** * Licenses: MIT * Repository: [https://github.com/mathiasbynens/regenerate-unicode-properties](https://github.com/mathiasbynens/regenerate-unicode-properties) @@ -2251,7 +2278,7 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **resolve-from@3.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/resolve-from](https://github.com/sindresorhus/resolve-from) -1. **resolve-from@4.0.0** +1. **resolve-from@5.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/resolve-from](https://github.com/sindresorhus/resolve-from) 1. **resolve-url@0.2.1** @@ -2266,6 +2293,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **rimraf@2.7.1** * Licenses: ISC * Repository: [https://github.com/isaacs/rimraf](https://github.com/isaacs/rimraf) +1. **rimraf@3.0.2** + * Licenses: ISC + * Repository: [https://github.com/isaacs/rimraf](https://github.com/isaacs/rimraf) 1. **ripemd160@2.0.2** * Licenses: MIT * Repository: [https://github.com/crypto-browserify/ripemd160](https://github.com/crypto-browserify/ripemd160) @@ -2278,12 +2308,6 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **safe-regex@1.1.0** * Licenses: MIT * Repository: [https://github.com/substack/safe-regex](https://github.com/substack/safe-regex) -1. **safer-buffer@2.1.2** - * Licenses: MIT - * Repository: [https://github.com/ChALkeR/safer-buffer](https://github.com/ChALkeR/safer-buffer) -1. **sax@1.2.4** - * Licenses: ISC - * Repository: [https://github.com/isaacs/sax-js](https://github.com/isaacs/sax-js) 1. **schema-utils@1.0.0** * Licenses: MIT * Repository: [https://github.com/webpack-contrib/schema-utils](https://github.com/webpack-contrib/schema-utils) @@ -2314,13 +2338,19 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **shebang-command@1.2.0** * Licenses: MIT * Repository: [https://github.com/kevva/shebang-command](https://github.com/kevva/shebang-command) +1. **shebang-command@2.0.0** + * Licenses: MIT + * Repository: [https://github.com/kevva/shebang-command](https://github.com/kevva/shebang-command) 1. **shebang-regex@1.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/shebang-regex](https://github.com/sindresorhus/shebang-regex) +1. **shebang-regex@3.0.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/shebang-regex](https://github.com/sindresorhus/shebang-regex) 1. **signal-exit@3.0.2** * Licenses: ISC * Repository: [https://github.com/tapjs/signal-exit](https://github.com/tapjs/signal-exit) -1. **sinon@7.5.0** +1. **sinon@9.0.2** * Licenses: BSD-3-Clause * Repository: [https://github.com/sinonjs/sinon](https://github.com/sinonjs/sinon) 1. **slash@2.0.0** @@ -2356,9 +2386,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **source-map@0.6.1** * Licenses: BSD-3-Clause * Repository: [https://github.com/mozilla/source-map](https://github.com/mozilla/source-map) -1. **spawn-wrap@1.4.3** +1. **spawn-wrap@2.0.0** * Licenses: ISC - * Repository: [https://github.com/isaacs/spawn-wrap](https://github.com/isaacs/spawn-wrap) + * Repository: [https://github.com/istanbuljs/spawn-wrap](https://github.com/istanbuljs/spawn-wrap) 1. **spdx-compare@1.0.0** * Licenses: MIT * Repository: [https://github.com/kemitchell/spdx-compare.js](https://github.com/kemitchell/spdx-compare.js) @@ -2410,22 +2440,43 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **stream-shift@1.0.1** * Licenses: MIT * Repository: [https://github.com/mafintosh/stream-shift](https://github.com/mafintosh/stream-shift) -1. **string-width@1.0.2** +1. **string-width@2.1.1** * Licenses: MIT * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) 1. **string-width@3.1.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) +1. **string-width@4.2.0** + * Licenses: MIT + * Repository: [https://github.com/sindresorhus/string-width](https://github.com/sindresorhus/string-width) +1. **string.prototype.trimend@1.0.1** + * Licenses: MIT + * Repository: [https://github.com/es-shims/String.prototype.trimEnd](https://github.com/es-shims/String.prototype.trimEnd) +1. **string.prototype.trimleft@2.1.2** + * Licenses: MIT + * Repository: [https://github.com/es-shims/String.prototype.trimLeft](https://github.com/es-shims/String.prototype.trimLeft) +1. **string.prototype.trimright@2.1.2** + * Licenses: MIT + * Repository: [https://github.com/es-shims/String.prototype.trimRight](https://github.com/es-shims/String.prototype.trimRight) +1. **string.prototype.trimstart@1.0.1** + * Licenses: MIT + * Repository: [https://github.com/es-shims/String.prototype.trimStart](https://github.com/es-shims/String.prototype.trimStart) 1. **string_decoder@1.1.1** * Licenses: MIT * Repository: [https://github.com/nodejs/string_decoder](https://github.com/nodejs/string_decoder) 1. **strip-ansi@3.0.1** * Licenses: MIT * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) +1. **strip-ansi@4.0.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) 1. **strip-ansi@5.2.0** * Licenses: MIT * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) -1. **strip-bom@3.0.0** +1. **strip-ansi@6.0.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/strip-ansi](https://github.com/chalk/strip-ansi) +1. **strip-bom@4.0.0** * Licenses: MIT * Repository: [https://github.com/sindresorhus/strip-bom](https://github.com/sindresorhus/strip-bom) 1. **strip-eof@1.0.0** @@ -2443,24 +2494,24 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **supports-color@2.0.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) -1. **supports-color@5.4.0** +1. **supports-color@5.5.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) -1. **supports-color@5.5.0** +1. **supports-color@6.0.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) 1. **supports-color@6.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) +1. **supports-color@7.1.0** + * Licenses: MIT + * Repository: [https://github.com/chalk/supports-color](https://github.com/chalk/supports-color) 1. **taffydb@2.6.2** * Licenses: UNKNOWN * Repository: [https://github.com/typicaljoe/taffydb](https://github.com/typicaljoe/taffydb) 1. **tapable@1.1.3** * Licenses: MIT * Repository: [https://github.com/webpack/tapable](https://github.com/webpack/tapable) -1. **tar@4.4.10** - * Licenses: ISC - * Repository: [https://github.com/npm/node-tar](https://github.com/npm/node-tar) 1. **teeny-request@6.0.1** * Licenses: Apache-2.0 * Repository: [https://github.com/googleapis/teeny-request](https://github.com/googleapis/teeny-request) @@ -2470,9 +2521,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **terser@4.6.6** * Licenses: BSD-2-Clause * Repository: [https://github.com/terser/terser](https://github.com/terser/terser) -1. **test-exclude@5.2.3** +1. **test-exclude@6.0.0** * Licenses: ISC - * Repository: [https://github.com/istanbuljs/istanbuljs](https://github.com/istanbuljs/istanbuljs) + * Repository: [https://github.com/istanbuljs/test-exclude](https://github.com/istanbuljs/test-exclude) 1. **through2@2.0.5** * Licenses: MIT * Repository: [https://github.com/rvagg/through2](https://github.com/rvagg/through2) @@ -2494,18 +2545,30 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **to-regex-range@2.1.1** * Licenses: MIT * Repository: [https://github.com/micromatch/to-regex-range](https://github.com/micromatch/to-regex-range) +1. **to-regex-range@5.0.1** + * Licenses: MIT + * Repository: [https://github.com/micromatch/to-regex-range](https://github.com/micromatch/to-regex-range) 1. **to-regex@3.0.2** * Licenses: MIT * Repository: [https://github.com/jonschlinkert/to-regex](https://github.com/jonschlinkert/to-regex) 1. **treeify@1.1.0** * Licenses: MIT * Repository: [https://github.com/notatestuser/treeify](https://github.com/notatestuser/treeify) +1. **tslib@1.11.1** + * Licenses: Apache-2.0 + * Repository: [https://github.com/Microsoft/tslib](https://github.com/Microsoft/tslib) 1. **tty-browserify@0.0.0** * Licenses: MIT * Repository: [https://github.com/substack/tty-browserify](https://github.com/substack/tty-browserify) 1. **type-detect@4.0.8** * Licenses: MIT * Repository: [https://github.com/chaijs/type-detect](https://github.com/chaijs/type-detect) +1. **type-fest@0.8.1** + * Licenses: (MIT OR CC0-1.0) + * Repository: [https://github.com/sindresorhus/type-fest](https://github.com/sindresorhus/type-fest) +1. **typedarray-to-buffer@3.1.5** + * Licenses: MIT + * Repository: [https://github.com/feross/typedarray-to-buffer](https://github.com/feross/typedarray-to-buffer) 1. **typedarray@0.0.6** * Licenses: MIT * Repository: [https://github.com/substack/typedarray](https://github.com/substack/typedarray) @@ -2569,6 +2632,9 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **util@0.11.1** * Licenses: MIT * Repository: [https://github.com/defunctzombie/node-util](https://github.com/defunctzombie/node-util) +1. **uuid@3.4.0** + * Licenses: MIT + * Repository: [https://github.com/uuidjs/uuid](https://github.com/uuidjs/uuid) 1. **v8-compile-cache@2.0.3** * Licenses: MIT * Repository: [https://github.com/zertosh/v8-compile-cache](https://github.com/zertosh/v8-compile-cache) @@ -2593,11 +2659,11 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **webpack@4.42.0** * Licenses: MIT * Repository: [https://github.com/webpack/webpack](https://github.com/webpack/webpack) -1. **websocket-driver@0.7.3** +1. **websocket-driver@0.7.4** * Licenses: Apache-2.0 * Repository: [https://github.com/faye/websocket-driver-node](https://github.com/faye/websocket-driver-node) -1. **websocket-extensions@0.1.3** - * Licenses: MIT +1. **websocket-extensions@0.1.4** + * Licenses: Apache-2.0 * Repository: [https://github.com/faye/websocket-extensions-node](https://github.com/faye/websocket-extensions-node) 1. **whatwg-fetch@2.0.4** * Licenses: MIT @@ -2608,27 +2674,27 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **which@1.3.1** * Licenses: ISC * Repository: [https://github.com/isaacs/node-which](https://github.com/isaacs/node-which) +1. **which@2.0.2** + * Licenses: ISC + * Repository: [https://github.com/isaacs/node-which](https://github.com/isaacs/node-which) 1. **wide-align@1.1.3** * Licenses: ISC * Repository: [https://github.com/iarna/wide-align](https://github.com/iarna/wide-align) -1. **window-size@0.1.4** - * Licenses: MIT - * Repository: [https://github.com/jonschlinkert/window-size](https://github.com/jonschlinkert/window-size) 1. **worker-farm@1.7.0** * Licenses: MIT * Repository: [https://github.com/rvagg/node-worker-farm](https://github.com/rvagg/node-worker-farm) -1. **wrap-ansi@2.1.0** +1. **wrap-ansi@5.1.0** * Licenses: MIT * Repository: [https://github.com/chalk/wrap-ansi](https://github.com/chalk/wrap-ansi) -1. **wrap-ansi@5.1.0** +1. **wrap-ansi@6.2.0** * Licenses: MIT * Repository: [https://github.com/chalk/wrap-ansi](https://github.com/chalk/wrap-ansi) 1. **wrappy@1.0.2** * Licenses: ISC * Repository: [https://github.com/npm/wrappy](https://github.com/npm/wrappy) -1. **write-file-atomic@2.4.3** +1. **write-file-atomic@3.0.3** * Licenses: ISC - * Repository: [https://github.com/iarna/write-file-atomic](https://github.com/iarna/write-file-atomic) + * Repository: [https://github.com/npm/write-file-atomic](https://github.com/npm/write-file-atomic) 1. **xmlcreate@2.0.3** * Licenses: Apache-2.0 * Repository: [https://github.com/michaelkourlas/node-xmlcreate](https://github.com/michaelkourlas/node-xmlcreate) @@ -2638,36 +2704,33 @@ This report was generated on **Tue Jun 02 11:37:33 EEST 2020** using [Gradle-Lic 1. **xtend@4.0.2** * Licenses: MIT * Repository: [https://github.com/Raynos/xtend](https://github.com/Raynos/xtend) -1. **y18n@3.2.1** - * Licenses: ISC - * Repository: [https://github.com/yargs/y18n](https://github.com/yargs/y18n) 1. **y18n@4.0.0** * Licenses: ISC * Repository: [https://github.com/yargs/y18n](https://github.com/yargs/y18n) -1. **yallist@2.1.2** - * Licenses: ISC - * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) -1. **yallist@3.0.3** - * Licenses: ISC - * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) 1. **yallist@3.1.1** * Licenses: ISC * Repository: [https://github.com/isaacs/yallist](https://github.com/isaacs/yallist) 1. **yargs-parser@13.1.2** * Licenses: ISC * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) +1. **yargs-parser@18.1.3** + * Licenses: ISC + * Repository: [https://github.com/yargs/yargs-parser](https://github.com/yargs/yargs-parser) +1. **yargs-unparser@1.6.0** + * Licenses: MIT + * Repository: [https://github.com/yargs/yargs-unparser](https://github.com/yargs/yargs-unparser) 1. **yargs@13.2.4** * Licenses: MIT * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) 1. **yargs@13.3.2** * Licenses: MIT * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) -1. **yargs@3.32.0** +1. **yargs@15.3.1** * Licenses: MIT - * Repository: [https://github.com/bcoe/yargs](https://github.com/bcoe/yargs) + * Repository: [https://github.com/yargs/yargs](https://github.com/yargs/yargs) -This report was generated on **Tue Jun 02 2020 11:37:35 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. +This report was generated on **Wed Jun 03 2020 22:06:26 GMT+0300 (EEST)** using [NPM License Checker](https://github.com/davglass/license-checker) library. @@ -3499,7 +3562,7 @@ This report was generated on **Tue Jun 02 2020 11:37:35 GMT+0300 (EEST)** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue Jun 02 11:37:40 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed Jun 03 22:06:32 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -3924,7 +3987,7 @@ This report was generated on **Tue Jun 02 11:37:40 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue Jun 02 11:37:52 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed Jun 03 22:06:42 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5506,7 +5569,7 @@ This report was generated on **Tue Jun 02 11:37:52 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue Jun 02 11:37:55 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed Jun 03 22:07:08 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -5990,7 +6053,7 @@ This report was generated on **Tue Jun 02 11:37:55 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue Jun 02 11:37:55 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed Jun 03 22:07:08 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -6508,4 +6571,4 @@ This report was generated on **Tue Jun 02 11:37:55 EEST 2020** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Tue Jun 02 11:37:58 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Wed Jun 03 22:07:10 EEST 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file