Skip to content
This repository has been archived by the owner on Oct 14, 2020. It is now read-only.

Commit

Permalink
Merge pull request #405 from uberskigeek/378-review-EE7-EE8-API-levels
Browse files Browse the repository at this point in the history
Issue 378 validate EE7 and EE8 API levels
  • Loading branch information
scottkurz authored Oct 1, 2019
2 parents 51dda52 + 2983072 commit bc74679
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions boost-maven/boost-boms/boost-ee7-apis-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,32 @@
<dependencies>
<!-- jaxrs -->
<dependency>
<!-- Matches javax:javaee-web-api:7.0 version -->
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
</dependency>
<!-- jpa -->
<dependency>
<!-- Matches javax:javaee-web-api:7.0 version -->
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<!-- Matches javax:javaee-web-api:7.0 version -->
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<!-- Matches javax:javaee-web-api:7.0 version -->
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<!-- Matches javax:javaee-web-api:7.0 version -->
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.2</version>
Expand Down
11 changes: 9 additions & 2 deletions boost-maven/boost-boms/boost-ee8-apis-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,37 +24,44 @@
<dependencies>
<!-- jaxrs -->
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1</version>
</dependency>
<!-- jpa -->
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<version>1.2</version>
<version>1.3</version>
</dependency>
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.1</version>
<version>1.1.4</version>
</dependency>
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>javax.json.bind</groupId>
<artifactId>javax.json.bind-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<!-- matches javax:javaee-web-api:8.0.1 version -->
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.0.Final</version>
Expand Down

0 comments on commit bc74679

Please sign in to comment.