[GRADLE-2682] Cross compilation of Groovy annotation on Java class does not work Created: 13/Feb/13  Updated: 10/Feb/17  Resolved: 10/Feb/17

Status: Resolved
Project: Gradle
Affects Version/s: 1.4
Fix Version/s: None

Type: Bug
Reporter: wujek srujek Assignee: Unassigned
Resolution: Won't Fix Votes: 0

Attachments: File annotation_test.tgz    

 Description   

The project (Groovy 2.1.0, gradle 1.4) is attached to this issue.
This annotation:

@Retention(RetentionPolicy.RUNTIME)
@Target([ElementType.TYPE, ElementType.METHOD])
@interface Tx {

    String value() default 'def'
}

on this class:

@Tx
public class PersonServiceJava {
}

results in the following build failure:

:compileGroovy
/home/rafal/Development/IdeaWorkspace/hibertest/src/main/groovy/test/PersonServiceJava.java:4: error: annotation Tx is missing value for the attribute value
@Tx
^
1 error

My environment:

$ ./gradlew --version

------------------------------------------------------------
Gradle 1.4
------------------------------------------------------------

Gradle build time: Monday, January 28, 2013 3:42:46 AM UTC
Groovy: 1.8.6
Ant: Apache Ant(TM) version 1.8.4 compiled on May 22 2012
Ivy: 2.2.0
JVM: 1.7.0_07 (Oracle Corporation 23.3-b01)
OS: Linux 3.0.0-31-generic amd64
$ uname -a
Linux wujek 3.0.0-31-generic #48-Ubuntu SMP Mon Feb 4 13:22:36 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

I am not sure if this is a Gradle issue, might be something in Groovy, but similar code works in groovyConsole (but the class is not a Java class)... Seems to be something in cross-compilation.



 Comments   
Comment by Peter Niederwieser [ 22/Feb/13 ]

Looks like a Groovy stub generator bug. Here is the Java stub generated by the Groovy compiler (compileGroovy.groovyOptions.keepStubs = true):

import java.lang.annotation.*;
import java.lang.*;
import java.io.*;
import java.net.*;
import java.util.*;
import groovy.lang.*;
import groovy.util.*;

@java.lang.annotation.Retention(value=java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(value={java.lang.annotation.ElementType.TYPE,java.lang.annotation.ElementType.METHOD}) public @interface Tx
 {
 java.lang.String value();
}

As you can see, the default value is missing.

Comment by wujek srujek [ 22/Feb/13 ]

Yup, neither does it work on the command line when invoked with groovyc --jointCompilation. Have you issued it to groovy already? If not, I will do it. Thanks.

Comment by Peter Niederwieser [ 22/Feb/13 ]

I haven't.

Comment by Benjamin Muschko [ 15/Nov/16 ]

As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub.

We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to.

Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:

  • Checking that your issues contain requisite context, impact, behaviors, and examples as described in our published guidelines.
  • Leave a comment on the JIRA issue or open a new GitHub issue confirming that the above is complete.

We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle!

Comment by Benjamin Muschko [ 10/Feb/17 ]

Thanks again for reporting this issue. We haven't heard back from you after our inquiry from November 15th. We are closing this issue now. Please create an issue on GitHub if you still feel passionate about getting it resolved.

Generated at Wed Jun 30 12:28:35 CDT 2021 using Jira 8.4.2#804003-sha1:d21414fc212e3af190e92c2d2ac41299b89402cf.