diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-05-10 17:42:53 +0200 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-05-14 15:11:00 +0200 |
commit | 9f98c79be1638dabadc5a15bbf2ef512bbbcb690 (patch) | |
tree | 1e2842bd964dad0d418ad30821577c5cad1e0413 /sonar-plugin-api | |
parent | e9475e56b36eee4b79b8b73708281426af366416 (diff) | |
download | sonarqube-9f98c79be1638dabadc5a15bbf2ef512bbbcb690.tar.gz sonarqube-9f98c79be1638dabadc5a15bbf2ef512bbbcb690.zip |
SONAR-2541 Add the sonar-reviews-plugin with JiraLinkReviewAction
- Based on SOAP for creating the issue
- For the moment only creates on the FOO project on locahost:8080
with user admin/admin
=> Next step is to get all this from the project or global
properties
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/reviews/LinkReviewAction.java | 19 | ||||
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/reviews/ReviewAction.java | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/reviews/LinkReviewAction.java b/sonar-plugin-api/src/main/java/org/sonar/api/reviews/LinkReviewAction.java index 823012c157e..5b536029749 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/reviews/LinkReviewAction.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/reviews/LinkReviewAction.java @@ -1,3 +1,22 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2008-2012 SonarSource + * mailto:contact AT sonarsource DOT com + * + * Sonar 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. + * + * Sonar 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 Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ package org.sonar.api.reviews; import com.google.common.annotations.Beta; diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/reviews/ReviewAction.java b/sonar-plugin-api/src/main/java/org/sonar/api/reviews/ReviewAction.java index d6f49ab6968..d6cfaeb1298 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/reviews/ReviewAction.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/reviews/ReviewAction.java @@ -1,3 +1,22 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2008-2012 SonarSource + * mailto:contact AT sonarsource DOT com + * + * Sonar 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. + * + * Sonar 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 Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ package org.sonar.api.reviews; import com.google.common.annotations.Beta; |