OK, wel I found a way to "fix" this full-source issue.

Please note that it is still reproducable with AppFuse 2.0 final.
It's definitely an Ant 1.6.5 bug (see the bugzilla bellow) ... might be
reproduced under linux and windows, it might not be under Mac, as it is a
"File.createTempFile() and then rename it" issue I guess (that is why the
pom.xml was lost because it's deleted to be replaced by the new one from the
temp dir).

I've changed my local maven configuration to not use Ant 1.6.5 but rather
1.7.0 and the appfuse:full-source did finally work for me.

Go to
{MAVEN-REPO}/org/codehaus/mojo/appfuse-maven-plugin/2.0/appfuse-maven-plugin-2.0.pom
and change the dependencies on Ant 1.6.5 to 1.7.0:

<!--
        <dependency>
            <groupId>ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.6.5</version>
        </dependency>
        <dependency>
            <groupId>ant</groupId>
            <artifactId>ant-optional</artifactId>
            <version>1.5.3-1</version>
        </dependency>
-->
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.7.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant-nodeps</artifactId>
            <version>1.7.0</version>
        </dependency>

Hope it will work as it did for ME, good luck !



tweibel wrote:
> 
> 
> mraible wrote:
>> 
>> Unfortunately, I'm unable to reproduce this issue on my MacBook Pro.
> 
> I found the following bug report in the AFS bugzilla:
> http://issues.apache.org/bugzilla/show_bug.cgi?id=34633
> 
> 
> mraible wrote:
>> 
>> I can upload "myproject" so you can download it if you like.
> 
> That would be really great.
> 
> Thanks,
> Thomas
> 

-- 
View this message in context: 
http://www.nabble.com/Error-with-appfuse%3Afull-source-tf4101432s2369.html#a12795627
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to