Skip to content

Commit 4e24c2d

Browse files
committed
additional feedback
1 parent 2fd7300 commit 4e24c2d

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,17 @@ jobs:
3636
cache: maven
3737
- name: Build project
3838
run: mvn -B install --file pom.xml
39+
40+
relocate:
41+
runs-on: ubuntu-latest
42+
steps:
43+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
44+
- name: Set up JDK 21
45+
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
46+
with:
47+
java-version: 21
48+
distribution: 'temurin'
49+
cache: maven
3950
- name: Build relocation
4051
run: mvn -B package --file relocation/pom.xml
4152

relocation/api/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
</parent>
2727

2828
<artifactId>jakarta.enterprise.concurrent-api</artifactId>
29-
29+
<packaging>pom</packaging>
30+
3031
<name>Jakarta Concurrency</name>
3132
<description>
3233
Jakarta Concurrency provides a specification for using concurrency from application

relocation/tck-dist/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
</parent>
2929

3030
<artifactId>jakarta.enterprise.concurrent-tck-dist</artifactId>
31+
<packaging>pom</packaging>
3132

3233
<name>Jakarta Concurrency TCK Distribution</name>
3334
<description>Jakarta Concurrency TCK Distribution</description>

relocation/tck/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
2929
</parent>
3030

3131
<artifactId>jakarta.concurrent-tck</artifactId>
32+
<packaging>pom</packaging>
3233

3334
<name>Jakarta Concurrency TCK</name>
3435
<description>Jakarta Concurrency TCK Tests</description>

0 commit comments

Comments
 (0)