Skip to content

Commit

Permalink
Update to MP Parent 3.0 (#770)
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Cortez <radcortez@yahoo.com>
  • Loading branch information
radcortez committed Mar 6, 2023
1 parent c594ac1 commit 48b1013
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -31,11 +31,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
java: [11,17]
name: build with jdk ${{matrix.java}}

steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3
name: checkout
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
Expand Down
4 changes: 2 additions & 2 deletions api/pom.xml
Expand Up @@ -28,8 +28,8 @@

<dependencies>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-core-api</artifactId>
</dependency>
<dependency>
<groupId>biz.aQute.bnd</groupId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile-parent</artifactId>
<version>2.6</version>
<version>3.0</version>
</parent>

<groupId>org.eclipse.microprofile.config</groupId>
Expand All @@ -32,7 +32,7 @@

<properties>
<inceptionYear>2016</inceptionYear>
<version.microprofile.tck.bom>2.6</version.microprofile.tck.bom>
<version.microprofile.tck.bom>3.0</version.microprofile.tck.bom>
</properties>

<issueManagement>
Expand Down
10 changes: 5 additions & 5 deletions tck/pom.xml
Expand Up @@ -38,6 +38,11 @@
</dependencyManagement>

<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-core-api</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.microprofile.config</groupId>
<artifactId>microprofile-config-api</artifactId>
Expand All @@ -48,11 +53,6 @@
<artifactId>osgi.annotation</artifactId>
</dependency>

<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
Expand Down

0 comments on commit 48b1013

Please sign in to comment.