> One thing we do in the Apache Click project is that we package the
> source code in the library JAR files.
>
> I know this is a little unusual and makes the JAR files larger.
> However its great from an IDE perspective as the source code is
> already there and you can drill straight into methods. Its also good
> from the perspective you know exactly what you are dealing with, i.e.
> its the source used to compile the classes.
+1.
And this can be done very easily with Maven too:
-------------------------------------
<build>
....
<resources>
<resource>
<directory>src/java</directory>
</resource>
</resources>
...
-------------------------------------
so Maven will include this way the *.java files in the JARs.
regards,
Andrei.
This archive was generated by hypermail 2.0.0 : Thu Aug 19 2010 - 16:44:17 UTC