Hello, I'd like to create a JAR containing both Java 1.3 and Java5 classes (think about Spring jars)
I have created 2 modules, one for java 1.3 core features, and one for "tiger" extensions. The parent POM contains all dependencies, child poms only contains maven compiler plugin configuration. In my parent POM, I'm using assembly to jar all classes in a single JAR. I now want to deploy the assembly to my maven repository, with a custom POM with same content my parent POM but was JAR packaging (and if possible without <modules> section). Is this possible ? Nico.
