> When I run maven with java 6 al is fine, but when I run maven with > java 5 the following exception is thrown: > > [INFO] Trace > java.lang.NoClassDefFoundError: javax/activation/DataSource
I'm not certain, but based on the error you posted, it seems like javax.activation.* is included in jdk6 but not in jdk5. To fix the error, you should add an explicit dependency on it under the plugin's dependencies. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
