I am building a JEE6 (EJB) application with Maven. I use the maven dependency:
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
to get the api classes. But I am missing the api source code. (like javax.ejb ejb-api 3.0)
So the question is how do I get the source code for the JEE6 Apis (especial EJB 3.1) ?
I need it for better code complementation and documentation in Eclipse.