This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 228786 - Groovy compiler errors and issues can not be clicked on in the output window to take you to the source file and line
Summary: Groovy compiler errors and issues can not be clicked on in the output window ...
Status: NEW
Alias: None
Product: groovy
Classification: Unclassified
Component: Code (show other bugs)
Version: 7.3.1
Hardware: All All
: P3 normal with 1 vote (vote)
Assignee: Martin Janicek
URL:
Keywords:
: 152855 (view as bug list)
Depends on:
Blocks:
 
Reported: 2013-04-20 03:52 UTC by _ wadechandler
Modified: 2016-02-16 10:16 UTC (History)
2 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description _ wadechandler 2013-04-20 03:52:47 UTC
I have a Maven Groovy project and in pom.xml have:
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <dependencies>
                    <dependency>
                        <groupId>org.codehaus.groovy</groupId>
                        <artifactId>groovy-eclipse-compiler</artifactId>
                        <version>2.7.0-01</version>
                    </dependency>
                </dependencies>
                <configuration>
                    <compilerId>groovy-eclipse-compiler</compilerId>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>groovy-eclipse-compiler</artifactId>
                <groupId>org.codehaus.groovy</groupId>
                <version>2.7.0-01</version>
                <extensions>true</extensions>
            </plugin>
        </plugins>
    </build>

If I have a syntax error in a Groovy file and the compiler fails when I build the project from the IDE, then I can not click on the failure in the output window and be taken the file and line even though the line number and other information is available in the output window. I need to manually go to the file and then goto the line number. Nothing in the output window is turned into a link for Groovy syntax or compile errors where as for Java it is.
Comment 1 Martin Janicek 2013-08-08 10:02:17 UTC
*** Bug 152855 has been marked as a duplicate of this bug. ***
Comment 2 hefest 2016-02-16 10:16:11 UTC
Confirming. The workaround is obviously to read the line number, open the file and navigate to the line in question.