Skip to content

Commit

Permalink
build: fix jcenter dependency fail for kotlinx-html-js
Browse files Browse the repository at this point in the history
caused by `com.jaredsburrows:gradle-license-plugin:0.8.90` transitive fetch of `implementation 'org.jetbrains.kotlinx:kotlinx-html-js:0.7.2'`

fixes: adrcotfas#346
  • Loading branch information
sreich committed Jul 31, 2024
1 parent 95845d1 commit cc5e594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.90'
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.91'
}
}

Expand All @@ -23,8 +23,8 @@ plugins {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
jcenter()
}
}

0 comments on commit cc5e594

Please sign in to comment.