Skip to content

Commit 0f1a60a

Browse files
build(deps): Bump io.smallrye:smallrye-parent from 48 to 49 (#2552)
* build(deps): Bump io.smallrye:smallrye-parent from 48 to 49 Bumps [io.smallrye:smallrye-parent](https://github.com/smallrye/smallrye-parent) from 48 to 49. - [Release notes](https://github.com/smallrye/smallrye-parent/releases) - [Commits](https://github.com/smallrye/smallrye-parent/commits) --- updated-dependencies: - dependency-name: io.smallrye:smallrye-parent dependency-version: '49' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Skip formatters and update Java 11 profile for TCK tests Signed-off-by: Michael Edgar <michael@xlate.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Michael Edgar <michael@xlate.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Edgar <michael@xlate.io>
1 parent e9764f0 commit 0f1a60a

3 files changed

Lines changed: 46 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,12 @@ jobs:
149149
java-version: ${{ matrix.java }}
150150

151151
- name: execute tck ${{ matrix.tck-version }}
152-
run: mvn -B test -f testsuite/tck/pom.xml -Dsmallrye.commit=$(git rev-parse HEAD) -Dversion.eclipse.microprofile.openapi=${{ matrix.tck-version }}
152+
run: |
153+
mvn -B test -f testsuite/tck/pom.xml \
154+
-Dformatter.skip=true \
155+
-Dimpsort.skip=true \
156+
-Dsmallrye.commit=$(git rev-parse HEAD) \
157+
-Dversion.eclipse.microprofile.openapi=${{ matrix.tck-version }}
153158
154159
- uses: actions/upload-artifact@v7
155160
name: tck-report

.github/workflows/publish-tck.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,12 @@ jobs:
5353
java-version: ${{ matrix.java }}
5454

5555
- name: execute tck ${{ matrix.tck-version }}
56-
run: mvn -B test -f testsuite/tck/pom.xml -Dsmallrye.commit=$(git rev-parse HEAD) -Dversion.eclipse.microprofile.openapi=${{ matrix.tck-version }}
56+
run: |
57+
mvn -B test -f testsuite/tck/pom.xml \
58+
-Dformatter.skip=true \
59+
-Dimpsort.skip=true \
60+
-Dsmallrye.commit=$(git rev-parse HEAD) \
61+
-Dversion.eclipse.microprofile.openapi=${{ matrix.tck-version }}
5762
5863
- name: stage tck report
5964
run: mv testsuite/tck/target/surefire-reports/microprofile-openapi-tck-report.html ./microprofile-openapi-tck-report-${{ matrix.tck-version }}-jdk${{ matrix.java }}.html

pom.xml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.smallrye</groupId>
88
<artifactId>smallrye-parent</artifactId>
9-
<version>48</version>
9+
<version>49</version>
1010
</parent>
1111

1212
<artifactId>smallrye-open-api-parent</artifactId>
@@ -431,7 +431,40 @@
431431
<version.io.smallrye.smallrye-common-classloader>2.8.0</version.io.smallrye.smallrye-common-classloader>
432432
<version.io.smallrye.smallrye-config>3.10.2</version.io.smallrye.smallrye-config>
433433
<version.resteasy>6.2.3.Final</version.resteasy>
434+
<version.rest-assured>5.5.7</version.rest-assured>
434435
</properties>
436+
<build>
437+
<plugins>
438+
<plugin>
439+
<groupId>net.revelc.code.formatter</groupId>
440+
<artifactId>formatter-maven-plugin</artifactId>
441+
<executions>
442+
<execution>
443+
<!--
444+
Plugin must be disabled on Java 11, still used
445+
to execute the TCK in CI.
446+
-->
447+
<id>format-sources</id>
448+
<phase>none</phase>
449+
</execution>
450+
</executions>
451+
</plugin>
452+
<plugin>
453+
<groupId>net.revelc.code</groupId>
454+
<artifactId>impsort-maven-plugin</artifactId>
455+
<executions>
456+
<execution>
457+
<!--
458+
Plugin must be disabled on Java 11, still used
459+
to execute the TCK in CI.
460+
-->
461+
<id>sort-imports</id>
462+
<phase>none</phase>
463+
</execution>
464+
</executions>
465+
</plugin>
466+
</plugins>
467+
</build>
435468
</profile>
436469

437470
<profile>

0 commit comments

Comments
 (0)