What Maven repository can I use for EJB 3.1 API dependency?
Asked
Active
Viewed 1.6k times
1 Answers
20
This dependency from central worked.
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>

Konrad Garus
- 53,145
- 43
- 157
- 230
-
1Note that this API has some [specific issues with removed code](http://www.adam-bien.com/roller/abien/entry/trouble_with_crippled_java_ee) – eis Jun 10 '13 at 07:32