]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3263
authorSimon Brandhof <simon.brandhof@gmail.com>
Mon, 13 Feb 2012 15:28:19 +0000 (16:28 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Mon, 13 Feb 2012 15:28:19 +0000 (16:28 +0100)
plugins/sonar-dbcleaner-plugin/src/main/java/org/sonar/plugins/dbcleaner/DbCleanerPlugin.java
plugins/sonar-dbcleaner-plugin/src/main/java/org/sonar/plugins/dbcleaner/api/PurgeUtils.java

index 0155f2c3187b916ca80ce76be46335bff26e77aa..dfaa65a146c10341b4f8df923cf0b4430d1b3a9a 100644 (file)
@@ -39,13 +39,7 @@ import java.util.List;
       + "the DbCleaner keeps the first one and fully delete the other ones.", global = true, project = true),
   @Property(key = DbCleanerConstants.WEEKS_BEFORE_DELETING_ALL_SNAPSHOTS, defaultValue = "260",
     name = "Number of weeks before starting to delete all remaining snapshots",
-    description = "After this number of weeks, all snapshots are fully deleted.", global = true, project = true),
-  @Property(key = "sonar.purge.minimumPeriodInHours", defaultValue = "12",
-    name = "Maximum duration of code inspections, in hours",
-    description = "Sonar has an embedded purge mechanism which is fairly powerful to avoid keeping useless data. This mechanism is using a minimum period during which a " +
-      "resource created should not be suppressed whatever its state. This is set by default to 12 hours and should not be changed. The only situation you could want to change " +
-      "this is in case a projects takes more than 12 hours to be analyzed by Sonar.",
-    global = true, project = false)
+    description = "After this number of weeks, all snapshots are fully deleted.", global = true, project = true)
 }
 )
 public final class DbCleanerPlugin extends SonarPlugin {
index 1d9a9fe4bfa597de8e066ee5fb626f2ba266086c..e84b513e27dc21b941a28d4c9c7b046d2ddc2049 100644 (file)
@@ -32,7 +32,7 @@ import java.util.List;
 
 /**
  * @since 2.5
- * @deprecated in 2.14
+ * @deprecated Useless since version 2.14 because of the refactoring of the cleanup mechanism (see SONAR-2757).
  */
 @Deprecated
 public final class PurgeUtils {