aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-deprecated
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-02-13 16:21:45 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-02-13 16:31:21 +0100
commitc32688aed22dd11d9ae337a60b92bd45b65127e5 (patch)
treefebeb043c00707d68f5dfbf2fc69aecb30ec4ccd /sonar-deprecated
parent695fca2e7412295fc041ff8d61cf727d35d05ce9 (diff)
downloadsonarqube-c32688aed22dd11d9ae337a60b92bd45b65127e5.tar.gz
sonarqube-c32688aed22dd11d9ae337a60b92bd45b65127e5.zip
Move Maven stuff into a dedicated package
Diffstat (limited to 'sonar-deprecated')
-rw-r--r--sonar-deprecated/src/main/java/org/sonar/api/batch/maven/DependsUponCustomRules.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/sonar-deprecated/src/main/java/org/sonar/api/batch/maven/DependsUponCustomRules.java b/sonar-deprecated/src/main/java/org/sonar/api/batch/maven/DependsUponCustomRules.java
new file mode 100644
index 00000000000..0bcfece52d5
--- /dev/null
+++ b/sonar-deprecated/src/main/java/org/sonar/api/batch/maven/DependsUponCustomRules.java
@@ -0,0 +1,30 @@
+/*
+ * 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.batch.maven;
+
+/**
+ * Marker interface for MavenPluginHandlers. If set, classloader of maven plugin includes JARs of custom rule.
+ *
+ * @since 1.10
+ * @deprecated not supported anymore for many releases...
+ */
+@Deprecated
+public interface DependsUponCustomRules {
+}