Skip to content

Commit

Permalink
Use proper groupId for mysql connector in java (#17540)
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Jan 15, 2025
1 parent f039622 commit 0286d5c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: docker_test_cluster_10
name: java_docker_test
on: [push, pull_request]
permissions: read-all
jobs:

build:
name: Docker Test Cluster 10
name: Java Docker Test
runs-on: ubuntu-24.04

steps:
Expand Down Expand Up @@ -48,6 +48,7 @@ jobs:
- 'config/**'
- 'bootstrap.sh'
- 'docker/**'
- 'java/**'
- '.github/workflows/docker_test_cluster_10.yml'
- name: Set up Go
Expand Down
2 changes: 1 addition & 1 deletion java/example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</dependency>

<dependency>
<groupId>mysql</groupId>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.4.0</version>
<optional>false</optional>
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
<failOnWarning>true</failOnWarning>
<outputXML>true</outputXML>
<ignoredUnusedDeclaredDependencies>
<dependency>mysql:mysql-connector-j</dependency>
<dependency>com.mysql:mysql-connector-j</dependency>
<dependency>io.grpc:grpc-context</dependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
Expand Down

0 comments on commit 0286d5c

Please sign in to comment.