Skip to content

Commit

Permalink
486-store-mariadb-connector-at-top-level-in-the-bundle (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
osuender authored Oct 2, 2023
1 parent b4cab60 commit 94cc909
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions installation/db.connector.pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,17 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.2.0</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
1 change: 1 addition & 0 deletions installation/prepare_db_connector_jars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ fi
mkdir -p $XYNA_PATH/server/userlib
cp mysql-connector*.jar $XYNA_PATH/server/userlib
cp ojdbc*.jar $XYNA_PATH/server/userlib
cp mariadb-java-client*.jar $XYNA_PATH/server/userlib

# copy licenses
mkdir -p $XYNA_PATH/third_parties/db
Expand Down

0 comments on commit 94cc909

Please sign in to comment.