I am building a JEE6 application (EJB) with Maven. I am using the maven dependency:
<dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency>
to get api classes. But I am missing the api source code. (e.g. javax.ejb ejb-api 3.0)
So the question is how to get the source code for JEE6 Apis (special EJB 3.1)?
I need this to better complement the code and documentation in Eclipse.
Ralph source share