diff --git a/version.php b/version.php
index b7dc689e8b89362e6c1bc91330944dafc1bf2e7f..7b9ea634a49967509d8d5a34476bd341dfbf33f3 100644
--- a/version.php
+++ b/version.php
@@ -19,12 +19,17 @@
  *
  * @package    filter
  * @subpackage opencastfilter
- * @copyright  2018 Tamara Gunkel
+ * @copyright  2018 Tamara Gunkel, 2020 Nina Herrmann
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
 defined('MOODLE_INTERNAL') || die();
 
+$plugin->maturity = MATURITY_RC;
 $plugin->version = 2018031902;        // The current plugin version (Date: YYYYMMDDXX).
 $plugin->requires = 2017050500;        // Requires this Moodle version.
-$plugin->component = 'filter_opencast'; // Full name of the plugin.
\ No newline at end of file
+$plugin->component = 'filter_opencast'; // Full name of the plugin.
+$plugin->dependencies = array(
+    'block_opencast' => 2019052900, // Requires Block Opencast and Tool Opencast
+    'tool_opencast' => 2018102900,
+);
\ No newline at end of file