From cb2a7ae365347510012d7adb0f425510a85fe9ad Mon Sep 17 00:00:00 2001 From: Jakub Raczek Date: Fri, 6 Dec 2024 12:52:40 +0100 Subject: [PATCH 1/3] upgrade packages --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 5c18093..ebb3583 100644 --- a/pom.xml +++ b/pom.xml @@ -9,12 +9,12 @@ 1.0.0-SNAPSHOT - 7.5.1 + 7.10.2 2.2.7 - 2.17.1 - 2.17.1 - 0.9.5.5 - 4.1.1 + 2.24.2 + 2.24.2 + 0.10.1 + 5.3.0 3.9 1.0 From b5221d2ed4f9187e2fe884e5372d95644bc70fbb Mon Sep 17 00:00:00 2001 From: Jakub Raczek Date: Fri, 6 Dec 2024 12:58:28 +0100 Subject: [PATCH 2/3] updated --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ebb3583..ca6cb12 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 1.0.0-SNAPSHOT - 7.10.2 + 7.5.1 2.2.7 2.24.2 2.24.2 From 6c9d0694fa6f32fd8e3cb975d6bd6e7b4a7f113b Mon Sep 17 00:00:00 2001 From: Jakub Raczek Date: Fri, 6 Dec 2024 13:10:40 +0100 Subject: [PATCH 3/3] fixed ps script --- downloadBackupAndJDBCDrivers.ps1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/downloadBackupAndJDBCDrivers.ps1 b/downloadBackupAndJDBCDrivers.ps1 index 8bf818f..43d4e0e 100755 --- a/downloadBackupAndJDBCDrivers.ps1 +++ b/downloadBackupAndJDBCDrivers.ps1 @@ -1,21 +1,22 @@ Write-Output "Downloading AdventureWorks2008R2FullDatabaseBackup" New-Item -Path './zip' -ItemType Directory -Force (New-Object System.Net.WebClient).DownloadFile("https://github.com/raczeja/DBTestCompare_backups/raw/master/AdventureWorks2008R2FullDatabaseBackup.zip", "./zip/AdventureWorks2008R2FullDatabaseBackup.zip") +Invoke-WebRequest -Uri "https://github.com/raczeja/DBTestCompare_backups/raw/master/AdventureWorks2008R2FullDatabaseBackup.zip" -OutFile "./zip/AdventureWorks2008R2FullDatabaseBackup.zip" Write-Output "Unzipping AdventureWorks2008R2FullDatabaseBackup" Expand-Archive -LiteralPath './zip/AdventureWorks2008R2FullDatabaseBackup.zip' -DestinationPath ./docker -Force Write-Output "Downloading sqljdbc drivers" -(New-Object System.Net.WebClient).DownloadFile("https://download.microsoft.com/download/4/0/8/40815588-bef6-4715-bde9-baace8726c2a/sqljdbc_8.2.0.0_enu.zip", "./zip/sqljdbc_8.2.0.0_enu.zip") +Invoke-WebRequest -Uri "https://download.microsoft.com/download/4/0/8/40815588-bef6-4715-bde9-baace8726c2a/sqljdbc_8.2.0.0_enu.zip" -OutFile "./zip/sqljdbc_8.2.0.0_enu.zip" Write-Output "Unzipping sqljdbc drivers" Expand-Archive -LiteralPath './zip/sqljdbc_8.2.0.0_enu.zip' -DestinationPath "./zip/sqljdbc" -Force Copy-Item -Path "./zip/sqljdbc/sqljdbc_8.2/enu/*" -Destination "./jdbc_drivers" -Include "mssql-jdbc-*.jar" Write-Output "Downloading mysql sctipts" -(New-Object System.Net.WebClient).DownloadFile("https://github.com/raczeja/DBTestCompare_backups/raw/master/my-mysql/sql-scripts/sql-scripts.zip","./zip/sql-scripts-mysql.zip") +Invoke-WebRequest -Uri "https://github.com/raczeja/DBTestCompare_backups/raw/master/my-mysql/sql-scripts/sql-scripts.zip" -OutFile "./zip/sql-scripts-mysql.zip" Write-Output "Unzipping mysql sctipts" Expand-Archive -LiteralPath './zip/sql-scripts-mysql.zip' -DestinationPath "./docker/my-mysql/sql-scripts" -Force Write-Output "Downloading postgres sctipts" -(New-Object System.Net.WebClient).DownloadFile( "https://github.com/raczeja/DBTestCompare_backups/raw/master/my-postgres/sql-scripts/sql-scripts.zip","./zip/sql-scripts-postgres.zip") +Invoke-WebRequest -Uri "https://github.com/raczeja/DBTestCompare_backups/raw/master/my-postgres/sql-scripts/sql-scripts.zip" -OutFile "./zip/sql-scripts-postgres.zip" Write-Output "Unzipping postgres sctipts" Expand-Archive -LiteralPath './zip/sql-scripts-postgres.zip' -DestinationPath "./docker/my-postgres/sql-scripts" -Force \ No newline at end of file