Skip to content
This repository was archived by the owner on Feb 22, 2022. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: wix-incubator/wix-embedded-mysql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: wix-playground/wix-embedded-mysql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 6 commits
  • 5 files changed
  • 1 contributor

Commits on Nov 4, 2024

  1. Change urls

    pauliusjwix committed Nov 4, 2024
    Copy the full SHA
    78a1c6f View commit details

Commits on Nov 18, 2024

  1. change pom version

    pauliusjwix committed Nov 18, 2024
    Copy the full SHA
    e21b5ac View commit details
  2. change urls

    pauliusjwix committed Nov 18, 2024
    Copy the full SHA
    e6cfd18 View commit details
  3. change url

    pauliusjwix committed Nov 18, 2024
    Copy the full SHA
    a2bad90 View commit details
  4. Copy the full SHA
    11df6d0 View commit details
  5. Copy the full SHA
    09708d7 View commit details
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -3,10 +3,10 @@

<groupId>com.wix</groupId>
<artifactId>wix-embedded-mysql-modules</artifactId>
<version>4.6.3-SNAPSHOT</version>
<version>4.6.5-SNAPSHOT</version>
<name>Wix Embedded MySql Modules aggregator</name>
<description>Wix Embedded MySql Modules aggregator</description>
<url>https://github.com/wix/wix-embedded-mysql</url>
<url>https://github.com/wix-playground/wix-embedded-mysql</url>
<packaging>pom</packaging>

<modules>
@@ -26,9 +26,9 @@
</developers>

<scm>
<connection>scm:git:git@github.com:wix/wix-embedded-mysql.git</connection>
<developerConnection>scm:git:git@github.com:wix/wix-embedded-mysql.git</developerConnection>
<url>git@github.com:wix/wix-embedded-mysql.git</url>
<connection>scm:git:git@github.com:wix-playground/wix-embedded-mysql.git</connection>
<developerConnection>scm:git:git@github.com:wix-playground/wix-embedded-mysql.git</developerConnection>
<url>git@github.com:wix-playground/wix-embedded-mysql.git</url>
<tag>HEAD</tag>
</scm>

8 changes: 4 additions & 4 deletions wix-embedded-mysql-download-and-extract/pom.xml
Original file line number Diff line number Diff line change
@@ -4,23 +4,23 @@

<groupId>com.wix</groupId>
<artifactId>wix-embedded-mysql-download-and-extract</artifactId>
<version>4.6.3-SNAPSHOT</version>
<version>4.6.5-SNAPSHOT</version>
<name>Wix Embedded Mysql Download and Extract</name>
<description>Cli tool to predownload/precache mysql artifacts for wix-embedded-mysql</description>
<url>https://github.com/wix/wix-embedded-mysql/tree/master/wix-embedded-mysql-download-and-extract</url>
<url>https://github.com/wix-playground/wix-embedded-mysql/tree/master/wix-embedded-mysql-download-and-extract</url>

<parent>
<groupId>com.wix</groupId>
<artifactId>wix-embedded-mysql-modules</artifactId>
<version>4.6.3-SNAPSHOT</version>
<version>4.6.5-SNAPSHOT</version>
</parent>

<dependencies>

<dependency>
<groupId>com.wix</groupId>
<artifactId>wix-embedded-mysql</artifactId>
<version>4.6.3-SNAPSHOT</version>
<version>4.6.5-SNAPSHOT</version>
</dependency>

<dependency>
6 changes: 3 additions & 3 deletions wix-embedded-mysql/pom.xml
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@

<groupId>com.wix</groupId>
<artifactId>wix-embedded-mysql</artifactId>
<version>4.6.3-SNAPSHOT</version>
<version>4.6.5-SNAPSHOT</version>
<name>Wix Embedded MySql</name>
<description>Embedded MySql for E2E/IT tests</description>
<url>https://github.com/wix/wix-embedded-mysql/tree/master/wix-embedded-mysql</url>
<url>https://github.com/wix-playground/wix-embedded-mysql/tree/master/wix-embedded-mysql</url>

<parent>
<groupId>com.wix</groupId>
<artifactId>wix-embedded-mysql-modules</artifactId>
<version>4.6.3-SNAPSHOT</version>
<version>4.6.5-SNAPSHOT</version>
</parent>

<properties>
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ public static Builder aDownloadConfig() {
public static class Builder {
private IProxyFactory proxyFactory = new NoProxyFactory();
private String cacheDir = new File(System.getProperty("user.home"), ".embedmysql").getPath();
private String baseUrl = "https://dev.mysql.com/get/Downloads/";
private String baseUrl = "https://cdn.mysql.com//archives/";

/**
* Download cache location override that by default is set to '~/.embedmysql'.
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ private Platform currentPlatform() {
}

private String path() {
return format("MySQL-%s", majorVersion);
return format("mysql-%s", majorVersion);
}

private String toVersionString() {