]> source.dussan.org Git - sonarqube.git/blob
5732d5dcbfb7f86686ea346486bbb13133eee21a
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2020 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.platform.db.migration;
21
22 import org.sonar.core.platform.Module;
23 import org.sonar.server.platform.db.migration.history.MigrationHistoryImpl;
24 import org.sonar.server.platform.db.migration.history.MigrationHistoryMeddler;
25 import org.sonar.server.platform.db.migration.step.MigrationStepRegistryImpl;
26 import org.sonar.server.platform.db.migration.step.MigrationStepsProvider;
27 import org.sonar.server.platform.db.migration.version.v00.DbVersion00;
28 import org.sonar.server.platform.db.migration.version.v80.DbVersion80;
29 import org.sonar.server.platform.db.migration.version.v81.DbVersion81;
30 import org.sonar.server.platform.db.migration.version.v82.DbVersion82;
31 import org.sonar.server.platform.db.migration.version.v83.DbVersion83;
32 import org.sonar.server.platform.db.migration.version.v84.DbVersion84;
33 import org.sonar.server.platform.db.migration.version.v84.util.DropPrimaryKeySqlGenerator;
34 import org.sonar.server.platform.db.migration.version.v84.util.SqlHelper;
35
36 public class MigrationConfigurationModule extends Module {
37   @Override
38   protected void configureModule() {
39     add(
40       // DbVersion implementations
41       DbVersion00.class,
42       DbVersion80.class,
43       DbVersion81.class,
44       DbVersion82.class,
45       DbVersion83.class,
46       DbVersion84.class,
47
48       // migration steps
49       MigrationStepRegistryImpl.class,
50       new MigrationStepsProvider(),
51
52       // history
53       MigrationHistoryImpl.class,
54       MigrationHistoryMeddler.class,
55
56       // Only needed for 8.3
57       SqlHelper.class,
58       DropPrimaryKeySqlGenerator.class);
59   }
60 }