]> source.dussan.org Git - sonarqube.git/blob
373250ca965a4f76e8bbac8d4f69f5fc452eaefb
[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 import org.sonar.server.platform.db.migration.version.v85.DbVersion85;
36 import org.sonar.server.platform.db.migration.version.v86.DbVersion86;
37
38 public class MigrationConfigurationModule extends Module {
39   @Override
40   protected void configureModule() {
41     add(
42       // DbVersion implementations
43       DbVersion00.class,
44       DbVersion80.class,
45       DbVersion81.class,
46       DbVersion82.class,
47       DbVersion83.class,
48       DbVersion84.class,
49       DbVersion85.class,
50       DbVersion86.class,
51
52       // migration steps
53       MigrationStepRegistryImpl.class,
54       new MigrationStepsProvider(),
55
56       // history
57       MigrationHistoryImpl.class,
58       MigrationHistoryMeddler.class,
59
60       // Only needed for 8.3
61       SqlHelper.class,
62       DropPrimaryKeySqlGenerator.class);
63   }
64 }