Skip to content

Commit

Permalink
Baseline Java 17, drop Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ozangunalp committed Dec 18, 2024
1 parent 10a5ad8 commit f216f43
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 36 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build-main-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ jobs:
strategy:
matrix:
java: [
{
'name': '',
'version': '11',
'build_opts': '-Drevapi.skip=true'
},
{
'name': '',
'version': '17',
Expand Down Expand Up @@ -62,7 +57,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: temurin
cache: maven
- name: Coverage and Sonar
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/build-podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
strategy:
matrix:
java: [
{
'name': '',
'version': '11',
'build_opts': '-Drevapi.skip=true'
},
{
'name': '',
'version': '17',
Expand All @@ -31,12 +26,6 @@ jobs:
{
'name': '',
'version': '23',
},
{
'version': '11',
'build_opts': '-Pslow-flaky-tests -Drevapi.skip=true',
'name': 'Slow and Flaky tests',
'continue-on-error': true
}
]
name: Build with Java ${{ matrix.java.version }} ${{ matrix.java.name }}
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/build-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
strategy:
matrix:
java: [
{
'name': '',
'version': '11',
'build_opts': '-Drevapi.skip=true'
},
{
'name': '',
'version': '17',
Expand Down
19 changes: 5 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@


<properties>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<vertx.version>4.5.11</vertx.version>
<rxjava.version>2.2.21</rxjava.version>
Expand Down Expand Up @@ -145,6 +145,7 @@
<module>smallrye-reactive-messaging-gcp-pubsub</module>
<module>smallrye-reactive-messaging-pulsar</module>
<module>smallrye-reactive-messaging-aws-sqs</module>
<module>smallrye-reactive-messaging-camel</module>

<module>smallrye-connector-attribute-processor</module>
<module>smallrye-reactive-messaging-connector-archetype</module>
Expand Down Expand Up @@ -686,16 +687,6 @@
</build>

<profiles>
<profile>
<id>with-camel</id>
<activation>
<jdk>[17,)</jdk>
</activation>
<modules>
<module>smallrye-reactive-messaging-camel</module>
<module>documentation</module>
</modules>
</profile>
<profile>
<id>skipped-from-release</id>
<activation>
Expand All @@ -705,7 +696,7 @@
</property>
</activation>
<modules>
<!-- <module>documentation</module>--> <!-- deploy skipped in module -->
<module>documentation</module>
<module>tck</module>
<module>examples/quickstart</module>
<module>examples/kafka-quickstart</module>
Expand Down

0 comments on commit f216f43

Please sign in to comment.