Re: A little Gradle problem

2021-03-16 Thread Thomas Kellerer
Mark A. Flacy schrieb am 16.03.2021 um 02:44: > Greetings, > > The plugins you are using will impact what is going on with Gradle. You > should tell us about them as well. > > I know there is at least one protobuf plugin that NetBeans is not currently > able to handle. (Well, 12.1 couldn't; I

Re: A little Gradle problem

2021-03-15 Thread Mark A. Flacy
Greetings, The plugins you are using will impact what is going on with Gradle. You should tell us about them as well. I know there is at least one protobuf plugin that NetBeans is not currently able to handle. (Well, 12.1 couldn't; I haven't checked against 12.3.) -- Mark A. Flacy

Re: A little Gradle problem

2021-03-15 Thread Thomas Kellerer
Mark A. Flacy schrieb am 15.03.2021 um 10:32: > Which version of Gradle are you using? What does the parent project's > build.gradle look like? > I am using Gradle 6.7 The sub module only contains a build.gradle with the following dependencies: dependencies { // Spring

Re: A little Gradle problem

2021-03-15 Thread Thomas Kellerer
Andy Turner schrieb am 12.03.2021 um 20:05: > The line: >     testImplementation ("org.springframework.boot:spring-boot-starter-test") > > is unusual, and the one you add: >     testImplementation > ("org.springframework.boot:spring-boot-starter-test:${springBootVersion}") > > is more like the

Re: A little Gradle problem

2021-03-12 Thread Andy Turner
d: testImplementation ("org.springframework.boot:spring-boot-starter-test:${springBootVersion}") is more like the others. HTH Andy From: Thomas Kellerer Sent: 12 March 2021 08:29 To: NetBeans Users Subject: A little Gradle problem I have a

A little Gradle problem

2021-03-12 Thread Thomas Kellerer
I have a multi-module Gradle project that compiles fine and runs all tests from the command line. Building and testing (right-click on the project, then choosing "Test") also works fine from within NetBeans. However, one Test has the following imports: import