Most JSR and Java EE artifacts have artifacts starting with javax
eg. The dependency for JSR-330 is as follows:
<dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency>
Most of the standard APIs are available in the central repo and therefore can be found at mvnrepository.com .
Or you can just browse the javax directory of your maven mirror. Here is javax on ibiblio.org
Sun / Oracle Java APIs that are not in the center are usually found in the download.java.net maven repo file
source share