Skip to content

Commit 82ca543

Browse files
committed
Add java-11 profile to deploy in CI java 11 artifacts
1 parent 93b0633 commit 82ca543

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "PROJECT_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:evaluate -Dexpression=project.version -q -DforceStdout | grep -v '\[')" >> $GITHUB_ENV
3030
- name: Maven deploy
3131
if: ${{ endsWith(env.PROJECT_VERSION, '-SNAPSHOT') }}
32-
run: mvn deploy -s .github/maven-cd-settings.xml -DskipTests -B -pl vertx-sql-client,vertx-pg-client,vertx-mysql-client,vertx-mssql-client,vertx-db2-client,vertx-sql-client-templates
32+
run: mvn deploy -s .github/maven-cd-settings.xml -DskipTests -B -Pjava11
3333
Deploy-Oracle:
3434
name: Deploy (Oracle) to OSSRH
3535
runs-on: ubuntu-latest

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,18 @@
200200
<module>vertx-oracle-client</module>
201201
</modules>
202202
</profile>
203+
<profile>
204+
<id>java-11</id>
205+
<modules>
206+
<module>vertx-sql-client</module>
207+
<module>vertx-sql-client-codec</module>
208+
<module>vertx-pg-client</module>
209+
<module>vertx-mysql-client</module>
210+
<module>vertx-mssql-client</module>
211+
<module>vertx-db2-client</module>
212+
<module>vertx-sql-client-templates</module>
213+
</modules>
214+
</profile>
203215
<profile>
204216
<id>PostgreSQL-9</id>
205217
<properties>

0 commit comments

Comments
 (0)