redhat-developer / redhat-developer/vscode-java
Support additional Gradle configurations
Abierto
@testforstephen ya está trabajando en esto.
Desde el 22/2/2021.
Gradle
- Lenguaje dominante
- TypeScript
- Estrellas
- 2.3k
- Forks
- 546
- Merge medio
- 20 h 1 min
- PR fusionados (30 d)
- 11
Descripción
Our projects often times have integration tests and we use a Gradle configuration called integrationTest. The source for these tests is usually located in a src/integrationTest/java directory. Example:
my-subproject/
build.gradle
src/
integrationTest/
java/
com/ ...
main/
java/
com/ ...
build.gradle
settings.gradle
In my-subproject/build.gradle the dependencies are defined akin to
dependencies {
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
integrationTestImplementation 'org.junit.jupiter:junit-jupiter'
}
Right now, this means that IntelliSense will not be able to find symbols from the junit-jupiter dependency while editing code in the integrationTest directory. It appears to treat these source files as part of the default configuration.
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Evaluación
Este issue todavía no se ha evaluado.