varabyte / kobweb

A modern framework for full stack web apps in Kotlin, built upon Compose HTML
https://kobweb.varabyte.com
Apache License 2.0
1.5k stars 66 forks source link

Can not get Plugin [id: 'com.varabyte.kobweb.application', version: '0.18.2'] #572

Closed liweikui closed 1 month ago

liweikui commented 1 month ago

When I follow the Readme file step by step in Windonds 10, I get the error as following when I run the command: kobweb run. someone can tell me why? thanks!

Plugin [id: 'com.varabyte.kobweb.application', version: '0.18.2'] was not found in any of the following sources:

liweikui commented 1 month ago

the config in settings.gradle.kts : pluginManagement { repositories { gradlePluginPortal() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") maven("https://us-central1-maven.pkg.dev/varabyte-repos/public") } }

the config in build.gradle.kts plugins { alias(libs.plugins.kotlin.multiplatform) apply false }

subprojects { repositories { mavenCentral() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") google() maven("https://us-central1-maven.pkg.dev/varabyte-repos/public") } }

I can open https://maven.pkg.jetbrains.space/public/p/compose/dev in browser, but I can not open https://us-central1-maven.pkg.dev/varabyte-repos/public in browser. I have checked my network, I do not have any proxy configuration.

bitspittle commented 1 month ago

The URL to the entry registration for the artifact you are trying to pull down is:

https://console.cloud.google.com/artifacts/maven/varabyte-repos/us-central1/public/com.varabyte.kobweb.gradle:application/0.18.2?project=varabyte-repos

Are you on a home network or a corporate network?

liweikui commented 1 month ago

The URL to the entry registration for the artifact you are trying to pull down is:

https://console.cloud.google.com/artifacts/maven/varabyte-repos/us-central1/public/com.varabyte.kobweb.gradle:application/0.18.2?project=varabyte-repos

Are you on a home network or a corporate network?

I am on a corporate network. I can open the URL you mentioned in browser, How can I get it in my kobweb project? Thanks!

liweikui commented 1 month ago

The URL to the entry registration for the artifact you are trying to pull down is: https://console.cloud.google.com/artifacts/maven/varabyte-repos/us-central1/public/com.varabyte.kobweb.gradle:application/0.18.2?project=varabyte-repos Are you on a home network or a corporate network?

I am on a corporate network. I can open the URL you mentioned in browser, How can I get it in my kobweb project? Thanks!

When I try to open the url, https://us-central1-maven.pkg.dev/varabyte-repos/public, in browser, I always get a 404 error.