f5feefe844
Wails v3 replaces the NPM-only dev entry point. This adds the Go module, Taskfile, build metadata, and a minimal window shell without touching frontend logic. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
327 B
Groovy
19 lines
327 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "WailsApp"
|
|
include ':app'
|