Skip to content
aadrian edited this page Apr 21, 2017 · 10 revisions

Migrating from older versions of Mirage-SQL

Migrating from Mirage =<1.2.5 to 1.3.0

Mirge-SQL was moved to a new GitHub Organisation https://github.com/mirage-sql , so the artifacts were renamed from:

<dependency>
    <groupId>jp.sf.amateras</groupId>
    <artifactId>mirage</artifactId>
    <version>1.2.5</version>
</dependency>

and

compile 'jp.sf.amateras:mirage:1.2.5'

to:

<dependency>
    <groupId>com.miragesql</groupId>
    <artifactId>miragesql</artifactId>
    <version>1.3.0</version>
</dependency>

and

compile 'com.miragesql:miragesql:1.2.5'

Migrating from Mirage 1.3.0 to 2.0.x

Mirage-SQL sources were refactored to use the new Github Organization package name, so you have to change all you imports from:

import jp.sf.amateras.mirage.*;

to

import com.miragesql.miragesql.*;

Migrating from Mirage 2.0.x to 2.1.x

Mirage-SQL monolitic JAR was split in several smaller JARs.

Take the following steps to to migrate your application:

  • tbd
Clone this wiki locally