From 460eee7ce980e719ee1de7873b8fd22bf40f3532 Mon Sep 17 00:00:00 2001 From: Sébastien Lesaint Date: Wed, 7 Dec 2016 11:09:50 +0100 Subject: SONAR-8445 create maven module sonar-db-migration --- server/sonar-db-migration/pom.xml | 36 ++++++++++++++++++++++ .../server/platform/db/migration/package-info.java | 24 +++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 server/sonar-db-migration/pom.xml create mode 100644 server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/package-info.java (limited to 'server/sonar-db-migration') diff --git a/server/sonar-db-migration/pom.xml b/server/sonar-db-migration/pom.xml new file mode 100644 index 00000000000..9ece9a01e95 --- /dev/null +++ b/server/sonar-db-migration/pom.xml @@ -0,0 +1,36 @@ + + + 4.0.0 + + + org.sonarsource.sonarqube + server + 6.3-SNAPSHOT + + + sonar-db-migration + + SonarQube :: Database Migration + Create SonarQube schema + + + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${skipServerTests} + + + + + + + + diff --git a/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/package-info.java b/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/package-info.java new file mode 100644 index 00000000000..e3dd1730045 --- /dev/null +++ b/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube + * Copyright (C) 2009-2016 SonarSource SA + * mailto:contact AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.server.platform.db.migration; + +import javax.annotation.ParametersAreNonnullByDefault; + -- cgit v1.2.3