diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2021-07-09 09:34:25 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-07-09 20:03:00 +0000 |
commit | 475d5c661c06b1f8cfcb3c04bf90209c698465c9 (patch) | |
tree | edba9832793d6c0fc2b7330cf79ff9c0cf76dbad /server/sonar-alm-client | |
parent | dedcd07375177612708036458183e5cb221fff6b (diff) | |
download | sonarqube-475d5c661c06b1f8cfcb3c04bf90209c698465c9.tar.gz sonarqube-475d5c661c06b1f8cfcb3c04bf90209c698465c9.zip |
Fix code smell: add package-info.java
Diffstat (limited to 'server/sonar-alm-client')
3 files changed, 72 insertions, 0 deletions
diff --git a/server/sonar-alm-client/src/main/java/org/sonar/alm/client/azure/package-info.java b/server/sonar-alm-client/src/main/java/org/sonar/alm/client/azure/package-info.java new file mode 100644 index 00000000000..81ebe83439e --- /dev/null +++ b/server/sonar-alm-client/src/main/java/org/sonar/alm/client/azure/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube + * Copyright (C) 2009-2021 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.alm.client.azure; + +import javax.annotation.ParametersAreNonnullByDefault; + diff --git a/server/sonar-alm-client/src/main/java/org/sonar/alm/client/bitbucket/bitbucketcloud/package-info.java b/server/sonar-alm-client/src/main/java/org/sonar/alm/client/bitbucket/bitbucketcloud/package-info.java new file mode 100644 index 00000000000..fb48acfb622 --- /dev/null +++ b/server/sonar-alm-client/src/main/java/org/sonar/alm/client/bitbucket/bitbucketcloud/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube + * Copyright (C) 2009-2021 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.alm.client.bitbucket.bitbucketcloud; + +import javax.annotation.ParametersAreNonnullByDefault; + diff --git a/server/sonar-alm-client/src/main/java/org/sonar/alm/client/package-info.java b/server/sonar-alm-client/src/main/java/org/sonar/alm/client/package-info.java new file mode 100644 index 00000000000..e26e921d22d --- /dev/null +++ b/server/sonar-alm-client/src/main/java/org/sonar/alm/client/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube + * Copyright (C) 2009-2021 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.alm.client; + +import javax.annotation.ParametersAreNonnullByDefault; + |