JakeWharton / mosaic

Build terminal UI in Kotlin using Jetpack Compose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not able to use 0.7.0-SNAPSHOT

iamBedant opened this issue · comments

I am trying to use the 0.7.0-SNAPSHOT but getting the following error during gradle sync.

org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.jakewharton.mosaic', version: '0.7.0-SNAPSHOT'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'com.jakewharton.mosaic:com.jakewharton.mosaic.gradle.plugin:0.7.0-SNAPSHOT')

Gradle Config:

    repositories {
        mavenCentral()
        maven {
            url 'https://oss.sonatype.org/content/repositories/snapshots/'
        }
    }
    dependencies {
        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
        classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.0-SNAPSHOT'
    }
}

plugins {
    id 'org.jetbrains.kotlin.jvm' version '1.8.10'
    id 'application'
    id 'com.jakewharton.mosaic' version '0.7.0-SNAPSHOT'
}