diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2023-11-08 08:38:04 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-11-08 20:02:51 +0000 |
commit | 6e76d63689e8218f4bb6281d1a4ce7f7373cde75 (patch) | |
tree | 95446d397e330c25e07919ffe3478c45b96c81c0 /server | |
parent | 5d004a8f2aeb8128ebac80305f26256fcc5824ea (diff) | |
download | sonarqube-6e76d63689e8218f4bb6281d1a4ce7f7373cde75.tar.gz sonarqube-6e76d63689e8218f4bb6281d1a4ce7f7373cde75.zip |
NO-JIRA Add missing package-info
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/version/v104/package-info.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/version/v104/package-info.java b/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/version/v104/package-info.java new file mode 100644 index 00000000000..47d0ff5a355 --- /dev/null +++ b/server/sonar-db-migration/src/main/java/org/sonar/server/platform/db/migration/version/v104/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube + * Copyright (C) 2009-2023 SonarSource SA + * mailto:info 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.version.v104; + +import javax.annotation.ParametersAreNonnullByDefault; |