General tip: Depending on J2EE
If you're building a J2EE application you'll need to add a dependency on the J2EE JAR in your POM. You have probably noticed that the Sun J2EE JAR is not available on ibiblio. This is due to licensing restrictions.
Howeve there is a solution. The Geronimo project has made all the J2EE JARs available on ibiblio (m1 repo and m2 repo).
Thus for example if you need to depend on the J2EE JAR, use the following in your POM:
<dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-j2ee</artifactId> <version>1.4-rc4</version> </dependency>
