I am trying to get a simple GWT 2.3 project working in DevMode with an Ant Ivy build. I have used Ivy for GWT projects prior to 2.3 (GWT 2.0.x in particular), and the following dependencies (in my Ivy module xml file) have worked for me in the past: (I have removed the specific names for my Ivy configurations, and show them as "..." below.)

<dependency org="com.google.gwt" name="gwt-dev" rev="2.3.0" conf="..." />
<dependency org="com.google.gwt" name="gwt-servlet" rev="2.3.0" conf="..." />
<dependency org="com.google.gwt" name="gwt-user" rev="2.3.0" conf="..." />

My gwt-compile (when GWT's Java-to-Javascript compiler is invoked) fails using the above under GWT 2.3, however. In particular, with several errors similar to the following:

[java] [ERROR] Errors in 'jar:file:/../gwt-user-2.3.0.jar!/com/google/gwt/editor/client/EditorDriver.java'
[java] [ERROR] Line 97: No source code is available for type javax.validation.ConstraintViolation<T>; did you forget to inherit a required module?

After searching online for references that may be relevant, I find threads like this one regarding similar problems while building release candidates of 2.3 from source. These threads frequently mention a gwt-servlet-deps.jar that one needs to include in the compilation classpath, which appears to be the fruits of the labor around this issue in the GWT issue tracking system.

Of course with Ivy it's not quite the same as the advice I'm seeing. The above <dependency... rules do not appear to download a gwt-servlet-deps.jar (as opposed to downloading GWT's official distribution, wherein a special copy of that jar can be found).

So I have reasoned out that in the Ivy universe I probably need to add something like this:

<dependency org="javax.validation" name="validation-api" rev="1.0.0.GA" conf="..."/>

...and I thought I was pretty bad-ass for even having that idea (I seem to be a perpetual newbie to the Ivy & Maven world) but, alas, I am still getting the same errors.

Apparently the Java-to-Javascript compiler would like the sources, not just the bytecode jar, but I don't know how to tell Ivy to go get them. I feel like I'm close because I have found this thread which shows an Ant task that copies two validation jars into lib (both bytecode and sources), but I need some help to connect the dots for the Ivy world.

How would I tell Ivy to grab the source jar?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
<?xml version="1.0" encoding="UTF-8"?> 
<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd" 
xmlns:m="http://ant.apache.org/ivy/maven"> 

<dependency org="javax.validation" name="validation-api" rev="1.0.0.GA"> 
<artifact name="validation-api"/> 
<artifact name="validation-api" m:classifier="sources"/> 
</dependency> 

Source: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/4744e62fb088ba60?pli=1

Thanks to Filipe Sousa

link|improve this answer
Were you able to reproduce Filipe's result? I tried and I got an error: impossible to ivy retrieve: java.lang.RuntimeException: problem during retrieve Multiple artifacts of the module javax.validation#validation-api;1.0.0.GA are retrieved to the same file! Update the retrieve pattern to fix this error. I'm not sure what they mean by "retrieve pattern" in this context. – pohl May 6 '11 at 15:11
1  
I think you gave me the leg-up that I needed. After some reading and experimenting, I discovered that I needed to modify the pattern on the ivy:retrieve element's pattern attribute in the Ant build file that drives Ivy. In particular, I needed to add the parenthetical classifier bit at the end of this: <ivy:retrieve pattern="${lib.dir}/[conf]/[artifact]-[revision](-[classifier]).[ext]" /> – pohl May 6 '11 at 17:43
feedback

If the repository is an ivy-repository (ivy.xml files for the artifacts) this answer might help:

You would need to specifiy the conf of the validation api, that includes the sources.

<dependency org="javax.validation" name="validation-api" rev="1.0.0.GA" conf="compile->sources"/>

where compile is your local configuration and sources would be the configuration for the jar with sources.

The ivy.xml for validation-api would have to look like this (I don't know what it looks like in your repository):

<configurations>
    <conf name="compile" visibility="public"/>
    <conf name="source" visibility="public"/>
</configurations>
<publications>
   <artifact name="validation-api" type="jar" conf="compile" ext="jar"/>
   <artifact name="validation-api-src" type="jar" conf="source" ext="jar"/>
</publications>

This would tell ivy that there are two jars for the validation api available. One normal one (compile) and one special one(with sources). And you would have to specify which conf to retrieve.

link|improve this answer
Interesting. I don't recognize the publications element as anything I have seen in my ivy module file. Is the visibility="public" and essential element of your solution? – pohl May 6 '11 at 15:17
After reading about the publications tag here and noticing that it says used to describe the artifacts published by this module, I have become confused: I am not the maintainer of the validation-api Ivy module. Are you suggesting that this is something that they would have to do? – pohl May 6 '11 at 15:22
if your repository contains ivy artifacts, the ivy.xml should contain such an info. But if it is a maven repository the other answer may be the best approach ;) – oers May 7 '11 at 7:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.