You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Scott Palmer (Jira)" <ji...@apache.org> on 2020/02/03 19:01:00 UTC

[jira] [Created] (NETBEANS-3789) Configurations and dependencies occasionaly don't show fo Gradle projects

Scott Palmer created NETBEANS-3789:
--------------------------------------

             Summary: Configurations and dependencies occasionaly don't show fo Gradle projects
                 Key: NETBEANS-3789
                 URL: https://issues.apache.org/jira/browse/NETBEANS-3789
             Project: NetBeans
          Issue Type: Bug
          Components: projects - Gradle
    Affects Versions: 11.3
         Environment: macOS 10.15
JDK 13.0.2
            Reporter: Scott Palmer
            Assignee: Laszlo Kishalmi


Expanding the Projects pane, I expect to see under Configurations the configurations and dependencies related to my project.  Sometimes Configurations is empty, other times it is only partially filled in, yet other times it appears to be complete.

Example build.gradle:

apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'application'

group = 'my.company'

mainClassName = 'my.company.Main'

repositories {
    mavenCentral()
    jcenter()
    mavenLocal()
}

dependencies {
    compile 'org.jitsi:libjitsi:1.0-SNAPSHOT' // built and in mavenLocal cache
    testCompile 'junit:junit:4.12'
}

//////

In the above project only the testCompile configuration is shown.  For that configuration dependencies hamcrest-core:1.3 and junit:4.12 were shown.  The other dependency, libjitsi, was not shown at all, nor was the "compile" configuration.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists