microsoft / microsoft/vscode-java-pack

"Reload projects" doesn't do anything

Aperta
#1,139 3 commenti 0 reazioni 2 assegnatari Vedi su GitHub

@jdneo ci sta già lavorando.

Dal 8/2/2023.

ai-triaged bug reliability
Lingua principale
TypeScript
Stelle
352
Fork
166
Merge medio
17h 47m
PR unite (30g)
32

Descrizione

Hey, I have the problem that the "Reload projects" button in the build.gradle does do anything as you can see in the video:

https://user-images.githubusercontent.com/24459435/213462197-ae0215b5-24fb-45bf-9868-e1af54fc2a2c.mov

However, I have does bug only in the project. I also had the bug in another project. But I don't know anymore how I fixed it there...

Environment:

  • VS Code Version: v1.74.3
  • Extension Version: v0.25.7
  • JDK Type & Version: java 17.0.5 2022-10-18 LTS
  • OS Type & Version: macOS 12.6

Step to Reproduce:

  1. Change something in the build.gradle
  2. Click "Reload project"

Expected Behavior:
The build.gradle loads the dependencies.

Actual Behavior:
Nothing happens. No dependencies.

plugins {
	id 'application'
	id 'org.openjfx.javafxplugin' version '0.0.9'
}

apply plugin: 'java'
sourceCompatibility = 17
version = '1.0.0'
compileJava.options.encoding = 'UTF-8'


repositories {
    mavenCentral()
}

javafx {
	version = "17"
	modules = ['javafx.controls']
}

dependencies {
	implementation 'org.json:json:20220924'
    implementation 'org.apache.commons:commons-lang3:3.12.0'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
    testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
    testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.1'
}

sourceSets {
    main {
        java {
            srcDir 'src'
        }
    }
    test {
        java {
            srcDirs = ['test']
        }
    }
}

test {
    useJUnitPlatform()
}

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.