This project, which originated from the legacy jbossas/projects/specs SVN repository, was enhanced to produce an aggregation of the APIs required by the Java EE Platform Specification. Further changes included migration to a github/jboss repository. The goals initiating this move and restructure were:
- Maintain a single repository containing the required APIs as defined by the EE Platform Specification Having a consistent structure for all the EE APIs make it easier to access, maintain, and consume.
- Individual release cycle per technology component Restructuring the project so each API set can be released individually provides greater flexibility and control to the project owners without waiting for the aggregate to be released and integrated. These API releases can be consumed by your project as a single dependency or as a fully defined set of required APIs for the profile.
- Define a naming scheme to associate the Specification version to the APIs contained in the JAR and distinguish between that and the release version of the artifact The naming scheme adopted is as follows:
- groupId: org.jboss.spec + the package name
- artifactId: Technology-api_SpecVersion_spec
- version: release version of the artifact
- Promote adoption of these spec-versioned APIs in all JBoss projects The APIs released from the org.jboss.specs project are certified for compliance to their respective specification.
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-8.0</artifactId>
<version>1.0.1.Final</version>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-web-8.0</artifactId>
<version>1.0.1.Final</version>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-8.0-all</artifactId>
<version>1.0.1.Final</version>
These examples show the group:artifactId for use with Java EE 8. Releases are available for Java EE 6 and 7 also.