0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 19:42:17 +02:00

Dependency updates 20230206 (#13208)

* Bump com.fasterxml.jackson.core:jackson-databind from 2.14.1 to 2.14.2

Bumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.14.1 to 2.14.2.
- [Release notes](https://github.com/FasterXML/jackson/releases)
- [Commits](https://github.com/FasterXML/jackson/commits)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump org.jlleitschuh.gradle:ktlint-gradle from 11.0.0 to 11.1.0

Bumps org.jlleitschuh.gradle:ktlint-gradle from 11.0.0 to 11.1.0.

---
updated-dependencies:
- dependency-name: org.jlleitschuh.gradle:ktlint-gradle
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump lint_version from 30.3.1 to 30.4.1 (#13199)

* Bump lint_version from 30.3.1 to 30.4.1

Bumps `lint_version` from 30.3.1 to 30.4.1.

Updates `com.android.tools.lint:lint-api` from 30.3.1 to 30.4.1

Updates `com.android.tools.lint:lint` from 30.3.1 to 30.4.1

Updates `com.android.tools.lint:lint-tests` from 30.3.1 to 30.4.1

---
updated-dependencies:
- dependency-name: com.android.tools.lint:lint-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: com.android.tools.lint:lint
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: com.android.tools.lint:lint-tests
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Set kotlin jvm target to 11 for lint-rules module

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lukstbit <52494258+lukstbit@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lukstbit <52494258+lukstbit@users.noreply.github.com>
This commit is contained in:
Mike Hardy 2023-02-06 13:58:59 -05:00 committed by GitHub
parent 4a441ddf91
commit 34cef67279
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View File

@ -287,7 +287,7 @@ dependencies {
implementation 'androidx.webkit:webkit:1.6.0'
// Note: the design support library can be quite buggy, so test everything thoroughly before updating it
implementation 'com.google.android.material:material:1.8.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'com.vanniktech:android-image-cropper:4.5.0'
implementation 'org.nanohttpd:nanohttpd:2.3.1'

View File

@ -7,7 +7,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilerExecutionStrategy
buildscript {
// The version for the Kotlin plugin and dependencies
ext.kotlin_version = '1.7.22'
ext.lint_version = '30.3.1'
ext.lint_version = '30.4.1'
ext.acra_version = '5.9.7'
ext.ankidroid_backend_version = '0.1.20-anki2.1.57'
ext.hamcrest_version = '2.2'
@ -32,7 +32,7 @@ buildscript {
classpath "app.brant:amazonappstorepublisher:0.1.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.0.0"
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.1.0"
}
}

View File

@ -5,6 +5,10 @@ repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions.jvmTarget = JavaVersion.VERSION_11
}
dependencies {
compileOnly "com.android.tools.lint:lint-api:$lint_version"
compileOnly "com.android.tools.lint:lint:$lint_version"