Peter Taylor wrote: > I'm trying to build a resource adapter using maven with the rar:rar > plugin. I've succeeded BUT I have an issue: > > I have <packaging>rar<packaging> in my pom. But when I do a `mvn > package` maven doesn't include the compiled source in the target rar > file.
Are you trying to package from the same project? This violates the maven convention of one artifact per module. Have your code that produces a jar in one module and make another module that consists of a pom wich packaing rar and a dependency to your jar module. -dirk --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
